Skip to content

Commit 1f23a16

Browse files
committed
#4856 Fix dashboard permissions tab title
1 parent 57576ac commit 1f23a16

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

stroom-core-client/src/main/java/stroom/dashboard/client/main/DashboardSuperPresenter.java

+8
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ public DashboardDoc onWrite(final MarkdownEditPresenter presenter,
8181
selectTab(DASHBOARD);
8282
}
8383

84+
@Override
85+
protected void onRead(final DocRef docRef,
86+
final DashboardDoc document,
87+
final boolean readOnly) {
88+
super.onRead(docRef, document, readOnly);
89+
dashboardPresenter.onRead(docRef, document, readOnly);
90+
}
91+
8492
@Override
8593
public boolean handleKeyAction(final Action action) {
8694
if (Action.OK == action
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
* Issue **#4856** : Fix dashboard permissions tab title.
2+
3+
4+
```sh
5+
# ********************************************************************************
6+
# Issue title: Query Selection handlers
7+
# Issue link: https://github.com/gchq/stroom/issues/4456
8+
# ********************************************************************************
9+
10+
# ONLY the top line will be included as a change entry in the CHANGELOG.
11+
# The entry should be in GitHub flavour markdown and should be written on a SINGLE
12+
# line with no hard breaks. You can have multiple change files for a single GitHub issue.
13+
# The entry should be written in the imperative mood, i.e. 'Fix nasty bug' rather than
14+
# 'Fixed nasty bug'.
15+
#
16+
# Examples of acceptable entries are:
17+
#
18+
#
19+
# * Issue **123** : Fix bug with an associated GitHub issue in this repository
20+
#
21+
# * Issue **namespace/other-repo#456** : Fix bug with an associated GitHub issue in another repository
22+
#
23+
# * Fix bug with no associated GitHub issue.
24+
```

0 commit comments

Comments
 (0)