Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
absternator committed Nov 13, 2023
1 parent 9ac8161 commit 63b9597
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/static/src/app/components/options/ParameterSetView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ const parameterColors = {
blue: "#479fb6",
grey: "#bbb"
};
export default defineComponent({
name: "ParameterSetView",
props: {
Expand All @@ -136,7 +135,7 @@ export default defineComponent({
},
setup(props) {
const store = useStore();
const currentParams = computed(() => store.state.run.parameterValues);
const currentParams = computed(() => store.state.run.parameterValues);
const parametersToShow = computed(() => (store.state.run.showUnchangedParameters
? props.parameterSet.parameterValues
Expand Down

0 comments on commit 63b9597

Please sign in to comment.