Skip to content

Commit

Permalink
#624 changed kill button color not to look like disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Feb 17, 2023
1 parent 88ae093 commit b3aefbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web-src/src/main-app/components/scripts/script-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
v-bind:class="{
disabled: !enableStopButton,
'red lighten-1': !killEnabled,
'grey darken-4': killEnabled}"
'red darken-3': killEnabled}"
@click="stopScript">
{{ stopButtonLabel }}
</button>
Expand Down Expand Up @@ -60,12 +60,12 @@ import LogPanel from '@/common/components/log_panel'
import {deepCloneObject, forEachKeyValue, isEmptyObject, isEmptyString, isNull} from '@/common/utils/common';
import ScheduleButton from '@/main-app/components/scripts/ScheduleButton';
import ScriptLoadingText from '@/main-app/components/scripts/ScriptLoadingText';
import ScriptViewScheduleHolder from '@/main-app/components/scripts/ScriptViewScheduleHolder';
import DOMPurify from 'dompurify';
import {marked} from 'marked';
import {mapActions, mapState} from 'vuex'
import {STATUS_DISCONNECTED, STATUS_ERROR, STATUS_EXECUTING, STATUS_FINISHED} from '../../store/scriptExecutor';
import ScriptParametersView from './script-parameters-view'
import ScriptViewScheduleHolder from '@/main-app/components/scripts/ScriptViewScheduleHolder';
import DOMPurify from 'dompurify';
export default {
data: function () {
Expand Down

0 comments on commit b3aefbb

Please sign in to comment.