about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-08-03 19:10:39 +0200
committerThibaut Girka <thib@sitedethib.com>2019-08-05 13:22:27 +0200
commit8b57d704dc455d1ffb1c31bb0ff6a19d58e322ce (patch)
tree9bace5f9b314276270d5e841cc59ebcfd16a3b9c /app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js
parente50554391aa726afe18ae1c0bc7ccbf69d7b4aec (diff)
[Glitch] Disable list title validation button when list title is empty
Port 089c6410208d294e7f1995e000bd796d4625246f to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js')
-rw-r--r--app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js b/app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js
index 24aaf82ac..bf5a8de35 100644
--- a/app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js
+++ b/app/javascript/flavours/glitch/features/list_editor/components/edit_list_form.js
@@ -11,7 +11,7 @@ const messages = defineMessages({
 
 const mapStateToProps = state => ({
   value: state.getIn(['listEditor', 'title']),
-  disabled: !state.getIn(['listEditor', 'isChanged']),
+  disabled: !state.getIn(['listEditor', 'isChanged']) || !state.getIn(['listEditor', 'title']),
 });
 
 const mapDispatchToProps = dispatch => ({