Max - Add My Tickets title and description [skip ci]

This commit is contained in:
ivan 2016-10-20 16:43:01 -03:00
parent 44cf49c813
commit 3997faae53
4 changed files with 7 additions and 6 deletions

View File

@ -137,8 +137,6 @@ class TicketList extends React.Component {
}
compareFunction(row1, row2) {
let ans = 0;
if (row1.closed == row2.closed) {
if (row1.unread == row2.unread) {
let s1 = row1.date;

View File

@ -1,12 +1,14 @@
import React from 'react';
import i18n from 'lib-app/i18n';
import Header from 'core-components/header';
class AdminPanelMyTickets extends React.Component {
render() {
return (
<div>
/admin/panel/tickets/my-tickets
</div>
<Header title={i18n('MY_TICKETS')} description={i18n('MY_TICKETS_DESCRIPTION')} />
);
}
}

View File

@ -43,7 +43,7 @@ module.exports = [
return {
status: 'success',
data: {
sessionActive: false
sessionActive: true
}
};
}

View File

@ -69,6 +69,7 @@ export default {
'ACCOUNT_DESCRIPTION': 'All your tickets are stored in your accounts\'s profile. Keep track off all your tickets you send to our staff team.',
'SUPPORT_CENTER_DESCRIPTION': 'Welcome to our support center. You can contact us through a tickets system. Your tickets will be answered by our staff.',
'CUSTOM_RESPONSES_DESCRIPTION': 'Custom responses are automated responses for common problems',
'MY_TICKETS_DESCRIPTION': 'Here you can view the tickets you are responsible for.',
//ERRORS
'EMAIL_OR_PASSWORD': 'Email or password invalid',