Skip to content

Commit

Permalink
Merge pull request #2984 from MetaPhase-Consulting/TM-5974-Agenda
Browse files Browse the repository at this point in the history
TM-9574
  • Loading branch information
cagbakwu committed May 8, 2024
2 parents 927b0d3 + 2adfe56 commit 5923b79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/agendaItemMaintenancePane.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export function removeAgenda(aiData) {
const { aiseqnum, aiupdatedate } = aiData;

const regex = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).(\d{3})z$/i;
const aiupdate = aiupdatedate.replace(regex, '$1-$2-$3 $4:$5:$6');
const aiupdate = aiupdatedate.replace(regex, '$1-$2-$3 $4:$5:$6').replace('T', ' ');

return (dispatch) => {
if (cancelRemoveAI) { cancelRemoveAI('cancel'); }
Expand Down

0 comments on commit 5923b79

Please sign in to comment.