Skip to content

Commit

Permalink
Update DemoFtp.razor
Browse files Browse the repository at this point in the history
  • Loading branch information
KELLERAG authored Jun 20, 2024
1 parent 56acf3b commit 557bec0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LiveEditor/Pages/DemoFtp.razor
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@
<RadzenButton Click="@(args => ChooseDeviceConfigButtonClick(args, ExampleDeviceConfigText3))" Text="Load Example Config 3" Style="margin-left: 10px;" />
</div>

<RadzenTextArea @bind-Value="ExampleDeviceConfigText" Rows="20" Change="@(ConvertToGsmMessage)" Style="margin-bottom: 20px"></RadzenTextArea>
<RadzenTextArea @bind-Value="_convertedGsmMessageText" Rows="6" ReadOnly Style="margin-bottom: 20px"></RadzenTextArea>
<RadzenTextArea @bind-Value="ExampleDeviceConfigText" Rows="20" Change="@(ConvertToGsmMessage)" Style="margin-bottom: 20px;width: 500px;"></RadzenTextArea>
<RadzenTextArea @bind-Value="_convertedGsmMessageText" Rows="6" ReadOnly Style="margin-bottom: 20px; width: 500px;"></RadzenTextArea>
</RadzenCard>
</div>
</RadzenTabsItem>
Expand Down Expand Up @@ -185,4 +185,4 @@
var beautified = parsedJson.ToString(Formatting.Indented);
return beautified;
}
}
}

0 comments on commit 557bec0

Please sign in to comment.