Skip to content

Commit

Permalink
ISSUE #5211 more adjustments for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
carmenfan committed Dec 20, 2024
1 parent 237b975 commit ae88226
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions backend/src/scripts/utility/teamspaces/sendDailyDigest.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ const generateEmails = (data, dataRef, usersToUserInfo) => Promise.all(
const ticketCodes = ticketsArr.map((ticketId) => tsData.tickets[(UUIDToString(ticketId))]);
switch (type) {
case notificationTypes.TICKET_UPDATED:
tickets.updated = { count, link: `${uri}?queries=${ticketCodes.join(',')}` };
tickets.updated = { count, link: `${uri}?ticketSearch=${ticketCodes.join(',')}` };
break;
case notificationTypes.TICKET_CLOSED:
tickets.closed = { count, link: `${uri}?queries=${ticketCodes.join(',')}` };
tickets.closed = { count, link: `${uri}?ticketSearch=${ticketCodes.join(',')}` };
break;
case notificationTypes.TICKET_ASSIGNED:
tickets.assigned = { count, link: `${uri}?queries=${ticketCodes.join(',')}` };
tickets.assigned = { count, link: `${uri}?ticketSearch=${ticketCodes.join(',')}` };
break;
default:
logger.logInfo(`Unrecognised notification type ${type}, ignoring...`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
margin-left: 50px;
margin-right: 50px;
overflow: auto;
min-width: 550px;
}

.contentBody {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
margin-left: 50px;
margin-right: 50px;
overflow: auto;
min-width: 550px;
}

.contentBorder {
Expand Down

0 comments on commit ae88226

Please sign in to comment.