From 6a29af9c299e7692d6657346933db5890e508b5d Mon Sep 17 00:00:00 2001 From: chrisbromma2-alt Date: Wed, 18 Feb 2026 13:06:58 +0100 Subject: [PATCH] Update qsydFileExplorer.js Prevent error: [Cannot read properties of undefined (reading 'action')] --- src/lwc/qsydFileExplorer/qsydFileExplorer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lwc/qsydFileExplorer/qsydFileExplorer.js b/src/lwc/qsydFileExplorer/qsydFileExplorer.js index 7924d7d..edf37e9 100644 --- a/src/lwc/qsydFileExplorer/qsydFileExplorer.js +++ b/src/lwc/qsydFileExplorer/qsydFileExplorer.js @@ -31,7 +31,7 @@ export default class QsydFileExplorerCmp extends LightningElement { * Internal properties */ _error; - _action; + _action = ''; /** * Private properties @@ -455,4 +455,4 @@ export default class QsydFileExplorerCmp extends LightningElement { } return results; } -} \ No newline at end of file +}