Skip to content

Commit

Permalink
Merge pull request #48965 from nextcloud/feat/files-bulk-tagging-foll…
Browse files Browse the repository at this point in the history
…owup
  • Loading branch information
skjnldsv authored Oct 29, 2024
2 parents daa09f8 + 96583c9 commit 3438e1f
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions apps/systemtags/src/components/SystemTagPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,12 @@ export default defineComponent({
bottom: 0;
padding-block: 8px;

:deep(.notecard) {
// min 2 lines of text to avoid jumping
min-height: 2lh;
align-items: center;
}

& > div {
margin: 0 !important;
}
Expand Down
3 changes: 2 additions & 1 deletion core/Migrations/Version31000Date20241018063111.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace OC\Core\Migrations;

use Closure;
use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
Expand Down Expand Up @@ -41,7 +42,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
$table = $schema->getTable('systemtag');

if (!$table->hasColumn('etag')) {
$table->addColumn('etag', 'string', [
$table->addColumn('etag', Types::STRING, [
'notnull' => false,
'length' => 32,
]);
Expand Down
2 changes: 2 additions & 0 deletions dist/6028-6028.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
1 change: 1 addition & 0 deletions dist/6028-6028.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/6028-6028.js.map.license
Loading

0 comments on commit 3438e1f

Please sign in to comment.