fix RTL layout issues

This commit is contained in:
TechMiX
2022-04-05 20:37:18 +02:00
parent cec857eb63
commit 0c3f9c895e
8 changed files with 52 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit, HostBinding } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Env, StateService } from 'src/app/services/state.service';
@@ -13,6 +13,8 @@ export class DocsComponent implements OnInit {
env: Env;
showWebSocketTab = true;
@HostBinding('attr.dir') dir = 'ltr';
constructor(
private route: ActivatedRoute,
private stateService: StateService,