Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Oct 3, 2023
1 parent 514810a commit e3a03c6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
'stylesheets' => [
'inter' => 'https://rsms.me/inter/inter.css',
],
];
];
4 changes: 2 additions & 2 deletions src/Components/DashboardComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DashboardComponent extends Component

public string $initialMode = '';

public ?HtmlString $assets = null;
public ?HtmlString $assets = null;

public function mount(Dashboard $dashboard)
{
Expand All @@ -27,4 +27,4 @@ public function render()
{
return view('dashboard::dashboard');
}
}
}
6 changes: 3 additions & 3 deletions src/Components/DashboardTileComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class DashboardTileComponent extends Component

public function __construct(
string $position,
?int $refreshInterval = null,
?string $title = null,
int $refreshInterval = null,
string $title = null,
bool $fade = true,
bool $show = true
) {
Expand Down Expand Up @@ -72,4 +72,4 @@ private function indexInAlphabet(string $character): int

return $index + 1;
}
}
}
2 changes: 1 addition & 1 deletion src/Components/UpdateModeComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ public function render()

return view('dashboard::components.updateMode');
}
}
}
2 changes: 1 addition & 1 deletion src/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ protected function isValidTheme(string $theme): bool
{
return in_array($theme, self::THEMES);
}
}
}
2 changes: 1 addition & 1 deletion src/DashboardServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ protected function registerLivewireComponents(): self

return $this;
}
}
}

0 comments on commit e3a03c6

Please sign in to comment.