Skip to content

Commit

Permalink
Roombooking: Swap latitude and longitude in form
Browse files Browse the repository at this point in the history
Follow the normal convention to ease finding the right
coordinates.
  • Loading branch information
bpedersen2 committed Nov 13, 2019
1 parent b82bd70 commit 2f024a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions indico/modules/rb/client/js/common/rooms/RoomEditModal.jsx
Expand Up @@ -284,8 +284,8 @@ const columns = [
content: [
{
type: 'input',
name: 'longitude',
label: Translate.string('Longitude'),
name: 'latitude',
label: Translate.string('Latitude'),
inputArgs: {
type: 'text',
fluid: true,
Expand All @@ -295,8 +295,8 @@ const columns = [
},
{
type: 'input',
name: 'latitude',
label: Translate.string('Latitude'),
name: 'longitude',
label: Translate.string('Longitude'),
inputArgs: {
type: 'text',
fluid: true,
Expand Down

0 comments on commit 2f024a2

Please sign in to comment.