Skip to content

Commit

Permalink
vis-2-beta => vis-2
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Sep 16, 2023
1 parent 21d8bc9 commit 29b3a8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/src/components/FileBrowser.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ class FileBrowser extends Component {
const Icon = expanded ? IconOpen : IconClosed;
const padding = this.state.viewType === TABLE ? item.level * this.levelPadding : 0;
const isUserData = item.name === USER_DATA;
const isSpecialData = isUserData || item.name === 'vis.0' || item.name === 'vis-2-beta.0';
const isSpecialData = isUserData || item.name === 'vis.0' || item.name === 'vis-2.0';

return <div
key={item.id}
Expand Down Expand Up @@ -1199,7 +1199,7 @@ class FileBrowser extends Component {
{this.state.viewType === TABLE &&
this.props.allowDelete &&
item.id !== 'vis.0/' &&
item.id !== 'vis-2-beta.0/' &&
item.id !== 'vis-2.0/' &&
item.id !== USER_DATA
?
<IconButton
Expand Down Expand Up @@ -1430,7 +1430,7 @@ class FileBrowser extends Component {
disabled={
!this.state.selected ||
this.state.selected === 'vis.0/' ||
this.state.selected === 'vis-2-beta.0/' ||
this.state.selected === 'vis-2.0/' ||
this.state.selected === USER_DATA
}
color="inherit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ class ConfigCheckLicense extends ConfigGeneric {
}

async _onClick(secondRun) {
const adapterName = this.props.adapterName === 'vis-2-beta' ? 'vis' : this.props.adapterName;
const adapterName = this.props.adapterName === 'vis-2' ? 'vis' : this.props.adapterName;
this.setState({ running: true });
let license;
let licenses;
Expand Down

0 comments on commit 29b3a8c

Please sign in to comment.