WIP: sonar qube
This commit is contained in:
@@ -122,9 +122,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { storeToRefs, mapState, mapActions, } from 'pinia';
|
||||
import i18next from '@/i18n/i18n';
|
||||
import { mapState, mapActions, } from 'pinia';
|
||||
import ConformanceInputStore from '@/stores/conformanceInput';
|
||||
import LoadingStore from '@/stores/loading.js';
|
||||
import ConformanceStore from '@/stores/conformance.js';
|
||||
@@ -361,13 +360,8 @@ export default {
|
||||
disabledBool = false;
|
||||
}
|
||||
} else {
|
||||
if((!this.selectCfmPtEteSEStart && this.selectCfmPtEteSEEnd)
|
||||
|| (this.selectCfmPtEteSEStart && !this.selectCfmPtEteSEEnd)) {
|
||||
disabledBool = true;
|
||||
}
|
||||
else {
|
||||
disabledBool = false;
|
||||
}
|
||||
disabledBool = (!this.selectCfmPtEteSEStart && this.selectCfmPtEteSEEnd)
|
||||
|| (this.selectCfmPtEteSEStart && !this.selectCfmPtEteSEEnd);
|
||||
}
|
||||
break;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user