Angular updated to v14

This commit is contained in:
Isaac Abadi
2022-11-24 15:27:27 -05:00
parent 5e08ca004a
commit 49ecaee58c
7 changed files with 2439 additions and 2333 deletions

View File

@@ -1,6 +1,6 @@
import { Component, OnInit, Inject } from '@angular/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { FormControl } from '@angular/forms';
import { UntypedFormControl } from '@angular/forms';
import { PostsService } from 'app/posts.services';
import { Playlist } from 'api-types';
@@ -14,7 +14,7 @@ export class CreatePlaylistComponent implements OnInit {
filesToSelectFrom = null;
type = null;
filesSelect = new FormControl();
filesSelect = new UntypedFormControl();
audiosToSelectFrom = null;
videosToSelectFrom = null;
name = '';