Skip to content

Commit

Permalink
Fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmervdl committed Jan 31, 2023
1 parent 3f670c9 commit 86b742f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions frontend/src/components/FilterEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {ref, computed, watch, watchEffect, onMounted, onUnmounted, readonly} fro
import draggable from 'vuedraggable';
import {stream} from '../stream.js';
import { getFilters, filterRequiresLanguage } from '../store/filters.js';
import { getFilterSteps } from '../store/filtersteps.js';
import { getFilterSteps, defaultValue } from '../store/filtersteps.js';
import { formatNumberSuffix } from '../format.js';
import Checkbox from '../components/Checkbox.vue';
import SegmentedControl from '../components/SegmentedControl.vue';
Expand All @@ -16,6 +16,7 @@ import { getUniqueId } from '../hacks.js';
import VueSelect from 'vue-select';
import 'vue-select/dist/vue-select.css';
const multiDragKey = navigator.platform.match(/^(Mac|iPhone$)/) ? 'Meta' : 'Control';
const SampleStep = Symbol('SampleStep');
Expand Down Expand Up @@ -379,13 +380,6 @@ const filterIsOpen = new class {
overflow-y: auto;
}
/* Bit of space for dragging & dropping */
.filter-steps::after {
content: '';
display: block;
height: 4em;
}
.filters.display-separately {
flex-direction: row-reverse;
flex: 0 0 600px;
Expand Down

0 comments on commit 86b742f

Please sign in to comment.