core/modules/views_ui/src/ViewUI.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/modules/views_ui/src/ViewUI.php b/core/modules/views_ui/src/ViewUI.php index e1f0e27..0ec6485 100644 --- a/core/modules/views_ui/src/ViewUI.php +++ b/core/modules/views_ui/src/ViewUI.php @@ -1222,14 +1222,14 @@ public function getDependencies() { * {@inheritdoc} */ public function getCacheKeys() { - return []; + return $this->storage->getCacheKeys(); } /** * {@inheritdoc} */ public function getCacheContexts() { - return []; + return $this->storage->getCacheContexts(); } /** @@ -1243,14 +1243,14 @@ public function getCacheTags() { * {@inheritdoc} */ public function getCacheMaxAge() { - return 0; + return $this->storage->getCacheMaxAge(); } /** * {@inheritdoc} */ public function isCacheable() { - return FALSE; + return $this->storage->isCacheable(); }