Skip to content

Commit

Permalink
Merge branch 'master' into edit-views-class-name
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Nov 13, 2024
2 parents 87584d5 + d5f0c24 commit b23fbab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
### Bug Fixes

- Fix an issue searching for annotation metadata on items that a user doesn't have permissions to view ([#1723](../../pull/1723))
- Fix a typo in a column header ([#1727](../../pull/1727))

## 1.30.2

Expand Down
2 changes: 1 addition & 1 deletion girder/girder_large_image/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def addSettingsToConfig(config, user, name=None):
columns.append({'type': 'image', 'value': value, 'title': value.title()})

columns.append({'type': 'record', 'value': 'name', 'title': 'Name'})
columns.append({'type': 'record', 'value': 'controls', 'title': 'Contols'})
columns.append({'type': 'record', 'value': 'controls', 'title': 'Controls'})
columns.append({'type': 'record', 'value': 'size', 'title': 'Size'})

if 'itemList' not in config:
Expand Down
2 changes: 1 addition & 1 deletion girder/girder_large_image/web_client/views/configView.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ var ConfigView = View.extend({
const li = {
columns: [
{type: 'record', value: 'name', title: 'Name'},
{type: 'record', value: 'controls', title: 'Contols'},
{type: 'record', value: 'controls', title: 'Controls'},
{type: 'record', value: 'size', title: 'Size'}]
};
const val = {itemList: li, itemListDialog: li};
Expand Down

0 comments on commit b23fbab

Please sign in to comment.