From d278809659dfe193d768be8bf07b243cd51efc95 Mon Sep 17 00:00:00 2001 From: Anjula Karunarathne Date: Tue, 11 Feb 2020 15:19:48 +0530 Subject: [PATCH] Desktop: Fixed incorect location format (#2480) --- ElectronClient/app/gui/NotePropertiesDialog.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElectronClient/app/gui/NotePropertiesDialog.jsx b/ElectronClient/app/gui/NotePropertiesDialog.jsx index 4de7d1458..6a9a74872 100644 --- a/ElectronClient/app/gui/NotePropertiesDialog.jsx +++ b/ElectronClient/app/gui/NotePropertiesDialog.jsx @@ -292,7 +292,7 @@ class NotePropertiesDialog extends React.Component { if (key === 'location') { try { const dms = formatcoords(value); - displayedValue = dms.format('DDMMss', { decimalPlaces: 0 }); + displayedValue = dms.format('DD MM ss X', { latLonSeparator: ', ', decimalPlaces: 2 }); } catch (error) { displayedValue = ''; }