Skip to content

Commit

Permalink
Merge branch 'hotfix/1.37.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
olovy committed Jan 15, 2025
2 parents 992baab + 36d39b7 commit cf73ba7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cataloging/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cataloging",
"version": "1.37.3",
"version": "1.37.4",
"type": "module",
"private": true,
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions cataloging/src/components/mixins/form-mixin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ export default {
delete fItem['@reverse'];
delete fItem._uid;
if (this.user.settings.activeSigel !== 'SEK') {
delete fItem['image'];
}
this.hideTopLevelProperties.forEach(property => { delete fItem[property]; });
return fItem;
Expand Down
2 changes: 1 addition & 1 deletion cataloging/src/components/search/search-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ export default {
&-selectWrapper {
@media (min-width: @screen-sm) {
flex-basis: 32%;
flex-basis: 25%;
}
border: solid @grey-lighter;
border-width: 0px 1px 0px 1px;
Expand Down
10 changes: 5 additions & 5 deletions cataloging/src/resources/json/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@
"Hide handled:": "Dölj hanterade:",
"links": "länkningar",
"link": "länkning",
"Bulk changes": "Massändringar",
"Bulk change": "Massändring",
"Create bulk change": "Skapa massändring",
"Bulk changes": "Körningar",
"Bulk change": "Körning",
"Create bulk change": "Skapa körning",
"Form builder": "Sökform",
"Changes": "Ändringar",
"Draft": "Utkast",
Expand All @@ -451,7 +451,7 @@
"Match with ID list" : "Matcha mot ID-lista",
"Selection" : "Urval",
"Preview " : "Förhandsgranskning",
"Save bulk change to preview" : "Spara massändring för att förhandsgranska",
"Save bulk change to preview" : "Spara körning för att förhandsgranska",
"No matching records" : "Inga matchande poster",
"Selection from ID list" : "Urval från ID-lista",
"Match subtypes" : "Matcha subtyper",
Expand All @@ -465,7 +465,7 @@
"Show as bulk change" : "Visa som körning",
"Show as record" : "Visa som post",
"To see bulk changes you need to switch to a sigel with access.": "För att se körningar behöver du växla till ett sigel med rättigheter.",
"Back to create bulk change": "Tillbaka till skapa massändring",
"Back to create bulk change": "Tillbaka till skapa körning",
"This might take a while...": "Det här verkar ta lite tid..."
}
}
1 change: 1 addition & 0 deletions cataloging/src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export default {
'record.sameAs',
'mainEntity.sameAs',
'mainEntity.bulk:execution',
'mainEntity.image',
'work.sameAs',
"record['@reverse']", // prevent visual bugs
"mainEntity['@reverse']", // prevent visual bugs
Expand Down

0 comments on commit cf73ba7

Please sign in to comment.