New destination address fix
This commit is contained in:
parent
93557fca00
commit
3b3b8ae700
|
|
@ -135,7 +135,7 @@
|
||||||
newDestination.Id = Guid.NewGuid();
|
newDestination.Id = Guid.NewGuid();
|
||||||
newDestination.Name = "Destination name";
|
newDestination.Name = "Destination name";
|
||||||
newDestination.Description = "Type some description here";
|
newDestination.Description = "Type some description here";
|
||||||
newDestination.AddressString = "The address of the destination";
|
newDestination.AddressString = $"The address of: {newDestination.Name}";
|
||||||
Guid addressId = Guid.NewGuid();
|
Guid addressId = Guid.NewGuid();
|
||||||
newDestination.Address = new Address();
|
newDestination.Address = new Address();
|
||||||
newDestination.Address.Id = addressId;
|
newDestination.Address.Id = addressId;
|
||||||
|
|
|
||||||
|
|
@ -279,11 +279,8 @@ select {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dxbl-grid .dxbl-grid-empty-data {
|
.dxbl-text-edit .dxbl-text-edit-input {
|
||||||
|
border-bottom: 1px solid;
|
||||||
padding: 5px;
|
|
||||||
border-top: 0;
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dxbl-tabs.dxbl-tabs-top > .dxbl-tabs-tablist {
|
.dxbl-tabs.dxbl-tabs-top > .dxbl-tabs-tablist {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue