Skip to content

Commit b8fb10a

Browse files
author
TaufiqTzy
committed
resolve dropdown button problem
1 parent e706ff8 commit b8fb10a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/ContentManager/FileGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ public function deleteMigrationFiles(string $file_name)
331331
/**
332332
* Generate Badaso Alter Migration File.
333333
*/
334-
public function generateBDOAlterMigrationFile(array $table, ?array $rows = null, string $prefix, array $relations = []): string
334+
public function generateBDOAlterMigrationFile(array $table, string $prefix, ?array $rows = null, array $relations = []): string
335335
{
336336
$migration_class_name = $this->file_system->generateAlterMigrationClassName($table, $prefix);
337337

src/resources/js/pages/database-management/browse.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
{{ data[index].tableName }}
230230
</vs-td>
231231
<vs-td class="badaso-table__td">
232-
<badaso-dropdown vs-trigger-click>
232+
<vs-dropdown vs-trigger-click>
233233
<vs-button
234234
size="large"
235235
type="flat"
@@ -263,7 +263,7 @@
263263
{{ $t("database.browse.warning.empty") }}
264264
</badaso-dropdown-item>
265265
</vs-dropdown-menu>
266-
</badaso-dropdown>
266+
</vs-dropdown>
267267
</vs-td>
268268
</vs-tr>
269269
</template>

tests/Feature/BadasoApiCrudManagementTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ public function testEntityManytoMany()
13381338
$response = CallHelperTest::withAuthorizeBearer($this)->json('DELETE', CallHelperTest::getUrlApiV1Prefix('/crud/delete'), $id);
13391339
}
13401340
}
1341-
$deleted = Schema::dropIfExists($table);
1341+
Schema::dropIfExists($table);
13421342
}
13431343
}
13441344

0 commit comments

Comments
 (0)