Skip to content

Commit

Permalink
Merge tag '1.37.0' into develop
Browse files Browse the repository at this point in the history
1.37.0
  • Loading branch information
lrosenstrom committed Nov 25, 2024
2 parents b3a18b8 + 3c48ac2 commit 77c83e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions cataloging/src/components/care/bulk-changes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,7 @@ export default {
:has-previous="hasPrevious"
:finished="isFinished"
:is-draft="isDraft"
:is-new="isNew"
:loading-preview="this.loadingPreview"
@ready="run"
@next="nextStep"
Expand Down
6 changes: 5 additions & 1 deletion cataloging/src/components/inspector/bulkchange-toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export default {
type: Boolean,
default: false,
},
isNew: {
type: Boolean,
default: false,
},
loadingPreview: {
type: Object,
default: () => ({'next' : false, 'previous' : false}),
Expand Down Expand Up @@ -254,7 +258,7 @@ export default {
{{ translatePhrase('Import selection from ID list') }}
</a>
</li>
<li class="Toolbar-menuItem">
<li class="Toolbar-menuItem" v-if="!isNew">
<a class="Toolbar-menuLink" @click="showAsRecord">
<i class="fa fa-fw fa-eye" />
{{ translatePhrase('Show as record') }}
Expand Down
8 changes: 0 additions & 8 deletions cataloging/src/components/inspector/search-window.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,6 @@ export default {
</template>
<template #panel-header-extra>
<div class="SearchWindow-header search-header">
<div class="SearchWindow-extractControls">
<div class="copy-title" v-if="canCopyTitle">
<label>
<input v-bind="copyTitle" type="checkbox" name="copyTitle" @change="$emit('update:copyTitle', $event.target.value)" />
{{ translatePhrase("Copy title from") }} {{ labelByLang(this.editorData.mainEntity['@type']) }}
</label>
</div>
</div>
<div class="SearchWindow-search search">
<div class="SearchWindow-filterSearchContainer">
<div class="SearchWindow-filterSearchContainerItem">
Expand Down

0 comments on commit 77c83e1

Please sign in to comment.