Skip to content

Commit

Permalink
chore: 放弃有部分 bug 的旧版本判断
Browse files Browse the repository at this point in the history
  • Loading branch information
xream committed May 23, 2024
1 parent 74e03eb commit d8148a4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store-front-end",
"version": "2.14.235",
"version": "2.14.236",
"private": true,
"scripts": {
"dev": "vite --host",
Expand Down
21 changes: 12 additions & 9 deletions src/views/editor/components/ActionRadio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,18 @@
const rdoCacheOpt = ['enabled' , 'disabled'];
const value = ref();
const rdoNewVersion = ref(false);
const foNewVersion = ref(false);
try {
rdoNewVersion.value = semverGt(env.value.version, '2.14.184')
} catch (e) {}
try {
foNewVersion.value = semverGt(env.value.version, '2.14.119')
} catch (e) {}
const rdoNewVersion = ref(true);
const foNewVersion = ref(true);
// const rdoNewVersion = ref(false);
// const foNewVersion = ref(false);
// try {
// rdoNewVersion.value = semverGt(env.value.version, '2.14.184')
// } catch (e) {}
// try {
// foNewVersion.value = semverGt(env.value.version, '2.14.119')
// } catch (e) {}
const foTw = ref('cn');
const rdoType = ref('IPv4');
Expand Down

0 comments on commit d8148a4

Please sign in to comment.