-
Notifications
You must be signed in to change notification settings - Fork 1
Init #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Init #1
Conversation
RoL.Blazor/Pages/Counter.razor
Outdated
@@ -0,0 +1,19 @@ | |||
@page "/counter" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Этот файл явно лишний
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
</MudDialog> | ||
@code { | ||
[CascadingParameter] MudDialogInstance MudDialog { get; set; } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишнее разделение
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
RoL.Blazor/Pages/Index.razor
Outdated
@@ -0,0 +1,9 @@ | |||
@page "/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя страница
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
</MudDialog> | ||
<SnackBars @ref="_snackBars"></SnackBars> | ||
@code { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя пустая строка
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
{ | ||
await _snackBars.ShowError(response.RequestMessage!.ToString()); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя пустая строка
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
RoL.Blazor/Shared/NavMenu.razor
Outdated
{ | ||
collapseNavMenu = !collapseNavMenu; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя строка
padding-bottom: 0.5rem; | ||
} | ||
|
||
.nav-item:first-of-type { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Уехала табуляция
RoL.Blazor/Shared/SurveyPrompt.razor
Outdated
@@ -0,0 +1,17 @@ | |||
<div class="alert alert-secondary mt-4"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишний файл?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@@ -0,0 +1,27 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишний файл
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
/// Slaves slice of slaves interfaces names | ||
/// </summary> | ||
public List<string> Slaves { get; set; } = new(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя строка
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<MudTr> | ||
<td colspan="9"> | ||
<MudCard Elevation="0"> | ||
<MudCardContent Class="pa-0 myClass"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Класс не должен называться myClass, переименуй в border-card-toolbar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<b>Server ID</b> | ||
<MudItem xs="12" Class="d-flex flex-row"> | ||
<MudSelect Class="ml-1" @bind-Value="@_newDhcp.ServerId" Variant="Variant.Outlined" Margin="Margin.Dense"> | ||
@{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишние скобки. @ должна быть перед if
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<b>Gateway</b> | ||
<MudItem xs="12"> | ||
<MudSelect Class="ml-1" @bind-Value="@_newDhcp.Gateway" Variant="Variant.Outlined" Margin="Margin.Dense"> | ||
@{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишние скобки. @ должна быть перед if
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@inject IDialogService DialogService | ||
|
||
<style> | ||
div.myClass > div > div { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переименуй myClass на card-content-bottom-border
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<SnackBars @ref="_snackBars"></SnackBars> | ||
@code { | ||
|
||
[CascadingParameter] MudDialogInstance MudDialog { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Имя атрибута должно быть над переменной
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<SnackBars @ref="_snackBars"></SnackBars> | ||
|
||
@code { | ||
[CascadingParameter] MudDialogInstance MudDialog { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Имя атрибута должно быть над переменной
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@inject IDialogService DialogService | ||
|
||
<style> | ||
div.myClass > div > div { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переименуй myClass на border-card-toolbar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
<SnackBars @ref="_snackBars"></SnackBars> | ||
|
||
@code { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лишняя пустая строка
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@inject IDialogService DialogService | ||
|
||
<style> | ||
div.myClass > div > div{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переименуй myClass в border-card-toolbar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
</MudDialog> | ||
<SnackBars @ref="_snackBars"></SnackBars> | ||
@code { | ||
[CascadingParameter] MudDialogInstance MudDialog { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Атрибуты должны быть над переменной
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
init project