messages styling, add conversation dropdown, show tooltip on filters

This commit is contained in:
Tykayn 2025-08-18 18:14:22 +02:00 committed by tykayn
parent c3319a6e84
commit 0e9a0aa21e
39 changed files with 537 additions and 180 deletions

View file

@ -1,9 +1,9 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { Store } from '@ngrx/store';
import { ApiService } from '../../api-service';
import { ActionTypes, StateInterface } from '../../reducers';
import {Component} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {Store} from '@ngrx/store';
import {ApiService} from '../../services/api-service';
import {ActionTypes, StateInterface} from '../../reducers';
@Component({
selector: 'app-feedback-button',
@ -21,7 +21,8 @@ export class FeedbackButton {
constructor(
private store: Store<StateInterface>,
private apiService: ApiService
) {}
) {
}
toggleModal() {
this.isModalOpen = !this.isModalOpen;