aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/webControls/components
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-24 06:57:50 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-05-24 16:40:43 +0530
commite245b4fa229bee1e2ab97fcb42de3831b8bdbe5b (patch)
treed684777b3fde5470c9f99304a9f022422ffb8045 /src/features/webControls/components
parent6.3.0-nightly.9 [skip ci] (diff)
downloadferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.gz
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.zst
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.zip
Upgrade npm modules
Diffstat (limited to 'src/features/webControls/components')
-rw-r--r--src/features/webControls/components/WebControls.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/webControls/components/WebControls.tsx b/src/features/webControls/components/WebControls.tsx
index 51bf7e541..74b343948 100644
--- a/src/features/webControls/components/WebControls.tsx
+++ b/src/features/webControls/components/WebControls.tsx
@@ -115,7 +115,7 @@ class WebControls extends Component<IProps, IState> {
115 const { url: inputUrl } = props; 115 const { url: inputUrl } = props;
116 const { editUrl } = state; 116 const { editUrl } = state;
117 117
118 return !editUrl ? { inputUrl, editUrl } : null; 118 return editUrl ? null : { inputUrl, editUrl };
119 } 119 }
120 120
121 constructor(props: IProps) { 121 constructor(props: IProps) {