Skip to content

Commit

Permalink
chore(edit-content): apply format #30401
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Oct 18, 2024
1 parent ef709ab commit cbf390b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ export class DotNavigationComponent {

/**
* Signal representing the menu items from the DotNavigationService.
*
*
* This signal is synchronized with the `items$` observable from the `DotNavigationService`.
* The `requireSync` option ensures that the signal is updated synchronously with the observable.
*
*
* @type {Signal<MenuItem[]>}
*/
$menu = toSignal(this.#dotNavigationService.items$, {
Expand All @@ -39,11 +39,11 @@ export class DotNavigationComponent {

/**
* Signal indicating whether the navigation is collapsed.
*
* This signal is synchronized with the `collapsed$` observable from the
* `DotNavigationService`. It ensures that the state of the navigation
*
* This signal is synchronized with the `collapsed$` observable from the
* `DotNavigationService`. It ensures that the state of the navigation
* (collapsed or expanded) is kept in sync with the service.
*
*
* @type {Signal<boolean>}
*/
$isCollapsed = toSignal(this.#dotNavigationService.collapsed$, {
Expand Down

0 comments on commit cbf390b

Please sign in to comment.