We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b4c373 commit 8c49f34Copy full SHA for 8c49f34
1 file changed
frontend/src/app/components/dashboard/db-table/db-table.component.ts
@@ -391,7 +391,7 @@ export class DbTableComponent implements OnInit {
391
}
392
393
isRowSelected(primaryKeys) {
394
- return this.selectedRow && JSON.stringify(this.selectedRow.primaryKeys) === JSON.stringify(primaryKeys);
+ return this.selectedRow && Object.keys(this.selectedRow.primaryKeys).length && JSON.stringify(this.selectedRow.primaryKeys) === JSON.stringify(primaryKeys);
395
396
397
showCopyNotification(message: string) {
0 commit comments