appDisplay: Add missing semicolon

This slipped through in commit eaa320 ...

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/640
This commit is contained in:
Florian Müllner 2019-07-23 19:42:16 +02:00
parent cebb6d40df
commit 0ecf135a4b

View File

@ -135,7 +135,7 @@ class BaseAppView {
addItem(icon) {
let id = icon.id;
if (this.hasItem(id))
throw new Error(`icon with id ${id} already added to view`)
throw new Error(`icon with id ${id} already added to view`);
this._allItems.push(icon);
this._items[id] = icon;