Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<PackageReference Include="BootstrapBlazor.Player" Version="9.0.0" />
<PackageReference Include="BootstrapBlazor.RDKit" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.SignaturePad" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.SmilesDrawer" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.SmilesDrawer" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.Sortable" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.Splitting" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.SvgEditor" Version="9.0.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public partial class SmilesDrawers

private void OnClickUpdateSize()
{
_options = new SmilesDrawerOptions { Theme = "light", Width = 200, Height = 200 };
_options.Width = 200;
_options.Height = 200;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ void AddData(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["Affix"],
Url = "affix"
},
Expand Down Expand Up @@ -705,7 +704,6 @@ void AddData(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["RDKit"],
Url = "rdkit"
},
Expand All @@ -721,7 +719,6 @@ void AddData(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["SmilesDrawer"],
Url = "smiles-drawer"
},
Expand Down Expand Up @@ -767,6 +764,7 @@ void AddData(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["Typed"],
Url = "typed"
},
Expand All @@ -782,7 +780,6 @@ void AddData(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["Watermark"],
Url = "watermark"
}
Expand Down Expand Up @@ -1576,7 +1573,6 @@ void AddIcons(DemoMenuItem item)
},
new()
{
IsNew = true,
Text = Localizer["OctIcon"],
Url = "oct-icon"
}
Expand Down