Skip to content

Commit

Permalink
ui: Fix custom_sql_table_slices table name format string
Browse files Browse the repository at this point in the history
Change-Id: I59a1bf6fc4ff747bfec8dfdc3c43046b1525f2c9
  • Loading branch information
chromy committed Oct 19, 2023
1 parent f5bcd0b commit 553af32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/tracks/custom_sql_table_slices/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export abstract class CustomSqlTableSliceTrack<

constructor(args: NewTrackArgs) {
super(args);
this.tableName = `customsqltableslicetrack_{uuidv4()}`;
this.tableName = `customsqltableslicetrack_${uuidv4()}`;
}

abstract getSqlDataSource(): CustomSqlTableDefConfig;
Expand Down

0 comments on commit 553af32

Please sign in to comment.