Skip to content

Commit

Permalink
fix(cataloging-bulkchanges): use custom checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
lrosenstrom committed Nov 1, 2024
1 parent 280aceb commit d5419c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cataloging/src/components/care/id-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default {
}
&-link {
padding: 10px 20px;
padding: 8px 20px;
display: block;
white-space: nowrap;
overflow: hidden;
Expand Down
14 changes: 9 additions & 5 deletions cataloging/src/components/inspector/field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -898,11 +898,15 @@ export default {
<span class="Field-matchSubClassesLabel">
{{ translatePhrase('Match subtypes') }}
</span>
<input
:checked="matchSubTypes"
type="checkbox"
:disabled="isLocked"
@change="toggleMatchSubtypes()"/>
<span>
<input
type="checkbox"
class="customCheckbox-input"
:disabled="isLocked"
:checked="matchSubTypes"
@change="toggleMatchSubtypes"/>
<span class="customCheckbox-icon"/>
</span>
</div>
</div>
</div>
Expand Down

0 comments on commit d5419c1

Please sign in to comment.