From 71760289e2150cfb4e973ef3d0ad44e6a1aedfc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zsef=20Farkas?= Date: Sat, 25 Jun 2016 13:41:40 +0200 Subject: [PATCH] Fix invalid layer. --- src/components/popover/tab/layer-tab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/popover/tab/layer-tab.component.ts b/src/components/popover/tab/layer-tab.component.ts index 3f5686d6..47f2407a 100644 --- a/src/components/popover/tab/layer-tab.component.ts +++ b/src/components/popover/tab/layer-tab.component.ts @@ -77,6 +77,6 @@ export class LayerTabComponent implements OnInit, KeyActionSaver { } private layerChanged(event) { - this.layer = event.value; + this.layer = +event.value; } }