Skip to content

Commit

Permalink
Merge pull request #2556 from SolidProgramming/2549-network-modelling…
Browse files Browse the repository at this point in the history
…-new-data-is-not-displayed-after-creation

ModellingConnectionHandler refresh after creating a new connection
  • Loading branch information
tpurschke committed Sep 27, 2024
2 parents d7f1a2e + 4191abc commit a5e941b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roles/ui/files/FWO.UI/Services/ModellingConnectionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1010,12 +1010,13 @@ public async Task<bool> Save(bool noCheck = false)
ActConn.SyncState();
if(AddMode)
{
await AddConnectionToDb();
await AddConnectionToDb();
}
else
{
await UpdateConnectionInDb();
}
await ReInit();
Close();
return true;
}
Expand Down

0 comments on commit a5e941b

Please sign in to comment.