Skip to content

Commit d35e59e

Browse files
cz-lucasJonasGoseberg
authored andcommitted
Fixed some more very minor issues
1 parent 61ee5ef commit d35e59e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

resources/assets/css/components/advancedSearch/advanced-search-index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
Layout container for the whole page.
33
Uses flexbox so the filter and table sections can sit side by side on desktop, and stack on mobile.
44
*/
@@ -8,7 +8,7 @@
88
width: 100%;
99
}
1010

11-
/*
11+
/*
1212
The filter (sidebar) section.
1313
Transition allows smooth showing/hiding.
1414
*/

resources/assets/css/components/advancedSearch/filterInputs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ When .hide is applied, the filter section is hidden.
319319
min-width: 35px;
320320
max-width: 42px;
321321
height: 38px;
322-
padding: 0px 2px;
322+
padding: 0 2px;
323323
font-size: 13px;
324324
border: 1px solid #ced4da;
325325
border-top-right-radius: 0;

resources/assets/js/advancedSearch/filterInputs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class SelectFilterInput extends FilterInput {
125125
const selections = $(this.element).select2('data');
126126

127127
const selectedValues = selections.map(item => {
128-
const parseId = parseInt(item.id);
128+
const parseId = parseInt(item.id, 10);
129129
return isNaN(parseId) ? item.id : parseId;
130130
})
131131

0 commit comments

Comments
 (0)