Skip to content

Commit

Permalink
fix: unable to add new table fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Jun 14, 2022
1 parent c37138c commit ee623b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ else {

ipcMain.on('refresh-theme-settings', () => {
const appTheme = persistentStore.get('application_theme');
if(isWindows){
if (isWindows) {
mainWindow.setTitleBarOverlay({
color: appTheme === 'dark' ? '#3f3f3f' : '#fff',
symbolColor: appTheme === 'dark' ? '#fff' : '#000'
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/WorkspaceTabPropsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ export default {
const changes = [];
this.localFields.forEach((field, i) => {
const originalField = this.originalFields.find(oField => oField._antares_id === field._antares_id);
if (!originalField) return;
const after = i > 0 ? this.localFields[i - 1].name : false;
const orgName = originalField.name;
Expand Down

0 comments on commit ee623b0

Please sign in to comment.