Skip to content

Commit

Permalink
replace
Browse files Browse the repository at this point in the history
  • Loading branch information
agbakwucharles committed May 8, 2024
1 parent 927b0d3 commit 2adfe56
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 2adfe56

Please sign in to comment.