Merge branch 'master' into 'master'

Fix bug.



See merge request !16
This commit is contained in:
chiu 2021-07-02 17:34:47 +08:00
commit 0f7a77f3cc
2 changed files with 70 additions and 66 deletions

View File

@ -1,6 +1,7 @@
<% active_module = @custom_data_field[:bind_module_app] rescue nil %>
<% active_uid = @custom_data_field[:bind_uid] rescue nil %>
<% active_module = @custom_configs.first.module if active_module.nil? %>
<% active_module = @custom_configs.first.module rescue nil if active_module.nil? %>
<% if @custom_configs.length != 0 %>
<div class="control-group input-content">
<label class="control-label muted" for="custom_bind_module_app"><%=t("custom_announcement.use_module")%> :</label>
<div class="controls">
@ -37,3 +38,4 @@
}
})
</script>
<% end %>

View File

@ -1,6 +1,7 @@
<% active_module = @custom_data_field[:bind_module_app] rescue nil %>
<% active_uid = @custom_data_field[:bind_uid] rescue nil %>
<% active_module = @custom_configs.first.module if active_module.nil? %>
<% active_module = @custom_configs.first.module rescue nil if active_module.nil? %>
<% if @custom_configs.length != 0%>
<div class="control-group input-content">
<label class="control-label muted" for="custom_bind_module_app"><%=t("custom_gallery.use_module")%> :</label>
<div class="controls">
@ -37,3 +38,4 @@
}
})
</script>
<% end %>