СТ
Подскажите, от обзервабла с shareReplay() отписываться надо на онДестрое или нет?
Size: a a a
СТ
RM
, take(1), или как вы хотели takeUntil(subj) + onDestroy, async pipe, смотря что вы делаете в общемСТ
RM
shareReplay если не ошибаюсь, просто предотвращает повторный same http запрос, к примеру.СТ
AI
K✔
> .text-container {
color: inherit;
width: 55%;
z-index: 2;
> .text-container__main-text {
font-size: 32px;
line-height: 42px;
width: 125%;
}
> .text-container__secondary-text {
font-size: 18px;
line-height: calc(1em * 1.5);
margin-top: 10px;
width: 115%;
}
> .text-container__secondary-terms {
font-size: 18px;
line-height: 42px;
}
}
.text-container {
color: inherit;
width: 55%;
z-index: 2;
> &__main-text {
font-size: 32px;
line-height: 42px;
width: 125%;
}
> &__secondary-text {
font-size: 18px;
line-height: calc(1em * 1.5);
margin-top: 10px;
width: 115%;
}
> &__secondary-terms {
font-size: 18px;
line-height: 42px;
}
}
K✔
RM
WebStorm после обновления 21.1.1 при отладке нативного js кода с breakpoints?AB
K✔
&.__main-text вместо &__main-text ?AB
__main-text это класс то даАМ
АМ
K✔
& и пропишу имена вложенных классов полностьюK✔
АМ
color: inherit;?
width: 55%;
z-index: 2;
&__main-text {
font-size: 32px;
line-height: 42px;
width: 125%;
}
&__secondary-text {
font-size: 18px;
line-height: calc(1em * 1.5);
margin-top: 10px;
width: 115%;
}
&__secondary-terms {
font-size: 18px;
line-height: 42px;
}
}
так
АМ
K✔
& в название класса-родителя. Такой баг наблюдается у меня с 8 версии Ангуляра. Почему так, можете дать направление, куда копать?