Skip to content

Commit

Permalink
Merge branch 'develop' into feature/update-avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich authored Aug 8, 2024
2 parents f1083df + 049c1bb commit 4324150
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/src/app/example/counter/counter.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, computed, effect, input, signal } from '@angular/core';
import { counter } from './counter';
import { AppButtonComponent } from 'app/ui/button/button/button.component';
import { AppButtonComponent } from 'app/ui/button/button.component';

interface CounterHistoryEntry {
dec: number;
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/app/example/hello/hello.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { injectMutation, injectQuery, injectQueryClient } from '@tanstack/angula
import { AngularQueryDevtools } from '@tanstack/angular-query-devtools-experimental';
import { lastValueFrom } from 'rxjs';
import { HelloService } from 'app/core/modules/openapi';
import { AppButtonComponent } from 'app/ui/button/button/button.component';
import { AppButtonComponent } from 'app/ui/button/button.component';

@Component({
selector: 'app-hello',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion webapp/src/app/ui/input/input.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { argsToTemplate, moduleMetadata, type Meta, type StoryObj } from '@storybook/angular';
import { AppInputComponent, args, argTypes } from './input.component';
import { action } from '@storybook/addon-actions';
import { AppButtonComponent } from '@app/ui/button/button/button.component';
import { AppButtonComponent } from '@app/ui/button/button.component';
import { AppLabelComponent } from '@app/ui/label/label.component';

const meta: Meta<AppInputComponent> = {
Expand Down

0 comments on commit 4324150

Please sign in to comment.