Skip to content

Commit

Permalink
update var name
Browse files Browse the repository at this point in the history
  • Loading branch information
mutdmour committed Aug 31, 2022
1 parent 3c63961 commit af90bef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/editor-ui/src/components/RunDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,15 @@ export default mixins(externalHooks).extend({
draggedColumn: false,
draggingPath: null as null | string,
hoveringPath: null as null | string,
showMappingIntroHint: false,
mappingHintVisible: false,
};
},
mounted() {
if (this.showMappingHint) {
this.showMappingIntroHint = true;
this.mappingHintVisible = true;
setTimeout(() => {
this.showMappingIntroHint = false;
this.mappingHintVisible = false;
}, 6000);
}
Expand Down Expand Up @@ -238,7 +238,7 @@ export default mixins(externalHooks).extend({
showHint(): boolean {
return (
!this.draggedColumn &&
((this.showMappingHint && this.showMappingIntroHint) ||
((this.showMappingHint && this.mappingHintVisible) ||
(!!this.focusedMappableInput &&
window.localStorage.getItem(LOCAL_STORAGE_MAPPING_FLAG) !== 'true'))
);
Expand Down

0 comments on commit af90bef

Please sign in to comment.