The Livechat settings of the 'color' types were not appearing correctly in the administrative area. (#10612)

pull/10715/head^2
Renato Becker 8 years ago committed by Rodrigo Nascimento
parent 9c93dd025a
commit 0855f7390c
  1. 10
      packages/rocketchat-livechat/config.js

@ -4,7 +4,13 @@ Meteor.startup(function() {
RocketChat.settings.add('Livechat_enabled', false, { type: 'boolean', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_title', 'Rocket.Chat', { type: 'string', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_title_color', '#C1272D', { type: 'color', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_title_color', '#C1272D', {
type: 'color',
editor: 'color',
allowedTypes: ['color', 'expression'],
group: 'Livechat',
public: true
});
RocketChat.settings.add('Livechat_display_offline_form', true, {
type: 'boolean',
@ -39,6 +45,8 @@ Meteor.startup(function() {
});
RocketChat.settings.add('Livechat_offline_title_color', '#666666', {
type: 'color',
editor: 'color',
allowedTypes: ['color', 'expression'],
group: 'Livechat',
public: true,
section: 'Offline',

Loading…
Cancel
Save