From ed326d34fdecd32eee85ec7a752b393560381005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Tue, 16 Apr 2019 09:57:58 +0200 Subject: [PATCH] [FIX] qweb: add t-debug to list of valid directives With a previous commit, qweb crashes when an unknown directive is encountered. However, t-debug was not on the list of valid directives. --- src/qweb.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qweb.ts b/src/qweb.ts index 305e4a90..d93fa1d4 100644 --- a/src/qweb.ts +++ b/src/qweb.ts @@ -198,7 +198,8 @@ export class QWeb { attf: 1, props: 1, key: 1, - keepalive: 1 + keepalive: 1, + debug: 1 }; [ forEachDirective,