Merge pull request #48965 from nextcloud/feat/files-bulk-tagging-followup

pull/48725/head
John Molakvoæ 2024-10-29 14:11:50 +07:00 committed by GitHub
commit 3438e1fe92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 15 additions and 8 deletions

@ -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;
}

@ -10,6 +10,7 @@ declare(strict_types=1);
namespace OC\Core\Migrations;
use Closure;
use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
@ -41,7 +42,7 @@ class Version31000Date20241018063111 extends SimpleMigrationStep {
$table = $schema->getTable('systemtag');
if (!$table->hasColumn('etag')) {
$table->addColumn('etag', 'string', [
$table->addColumn('etag', Types::STRING, [
'notnull' => false,
'length' => 32,
]);

2
dist/6028-6028.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
6028-6028.js.license

2
dist/8699-8699.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
8699-8699.js.license

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long