mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-28 08:14:25 +02:00
commit
9e3e10c9ee
@ -4,6 +4,7 @@ var gulp = require('gulp');
|
||||
var runSequence = require('run-sequence');
|
||||
|
||||
gulp.task('prod', ['clean'], function(callback) {
|
||||
process.env.NODE_ENV = 'production';
|
||||
|
||||
callback = callback || function() {};
|
||||
|
||||
|
@ -48,7 +48,7 @@ class AdminPanelMenu extends React.Component {
|
||||
getGroups() {
|
||||
return this.getRoutes().map((group) => {
|
||||
return {
|
||||
content: group.groupName,
|
||||
content: <span className="admin-panel-menu__item-text">{group.groupName}</span>,
|
||||
icon: group.icon
|
||||
};
|
||||
});
|
||||
|
@ -1,3 +1,6 @@
|
||||
.admin-panel-menu {
|
||||
|
||||
&__item-text {
|
||||
display: inline-flex;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user