mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* feat(marketplace): extract common components * chore: fix service provide * feat(markdown): allow Observable content * chore: remove unnecessary module import * minor styling for marketplacee list * only show loading for marketplace show if version change * chore: get rid of unnecessary server request * chore: fix version switching Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
22 lines
682 B
TypeScript
22 lines
682 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
|
|
import { MarkdownPipeModule } from '../../pipes/markdown/markdown.module'
|
|
import { SafeLinksModule } from '../../directives/safe-links/safe-links.module'
|
|
import { TextSpinnerComponentModule } from '../text-spinner/text-spinner.component.module'
|
|
import { MarkdownComponent } from './markdown.component'
|
|
|
|
@NgModule({
|
|
declarations: [MarkdownComponent],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
MarkdownPipeModule,
|
|
TextSpinnerComponentModule,
|
|
SafeLinksModule,
|
|
],
|
|
exports: [MarkdownComponent],
|
|
})
|
|
export class MarkdownModule {}
|