Skip to content

Commit 9071f92

Browse files
committed
fix: add unique representation for multiple plugin instances
1 parent 126c64d commit 9071f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class extends AdminForthPlugin {
4242
instanceUniqueRepresentation(pluginOptions: any) : string {
4343
// optional method to return unique string representation of plugin instance.
4444
// Needed if plugin can have multiple instances on one resource
45-
return `single`;
45+
return `${this.resourceConfig.resourceId}-quick-filters`;
4646
}
4747

4848
}

0 commit comments

Comments
 (0)