From 28f7f6a33b2fab77528ba1443d56fedeb7894248 Mon Sep 17 00:00:00 2001 From: Panagiotis Astithas Date: Tue, 6 Jun 2023 16:10:20 -0700 Subject: [PATCH] Use one-way binding for the path property (#3342) * Use one-way binding for the path property * Address review feedback --- webapp/components/path.js | 1 - webapp/views/wpt-app.js | 2 +- webapp/views/wpt-results.js | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/webapp/components/path.js b/webapp/components/path.js index 89a583c724..81fc30cf8c 100644 --- a/webapp/components/path.js +++ b/webapp/components/path.js @@ -15,7 +15,6 @@ const PathInfo = (superClass) => class extends superClass { return { path: { type: String, - notify: true, }, encodedPath: { type: String, diff --git a/webapp/views/wpt-app.js b/webapp/views/wpt-app.js index 5936fe0f6c..086de20a36 100644 --- a/webapp/views/wpt-app.js +++ b/webapp/views/wpt-app.js @@ -153,7 +153,7 @@ class WPTApp extends PathInfo(WPTFlags(TestRunsUIBase)) {