add missing username for blog notifications (#5422)

The notifications backend it worked fine, but the frontend was missing the username variable to be in able to display the 'New' badge correctly
This commit is contained in:
gabryon99 2021-05-31 10:25:40 +02:00
parent 7d51eb47f7
commit 24f054f009
6 changed files with 39 additions and 35 deletions

View file

@ -293,7 +293,7 @@ class ChartWidget extends Widget {
await super.update(datasourceParams);
if (this._chart != null) {
// expecting that rsp contains an object called series
const { colors, series } = this._fetchedData.rsp;
const { colors, series } = this._fetchedData.rsp;
// update the colors list
this._chartConfig.colors = colors;
this._chartConfig.series = series;