# 대상 이슈사항
TC_MSG_006 1. DSP 웹링크 버튼 안보임 2. 웹링크 팝업 크기, 옵션이 기존 메신저와 맞지 않음 3. 메일link, 결재link 명칭 메일, 결재로 변경되어야함 >>>>>>>>>>>>> 1. 수정완료 2. 웹링크는 Window 에 세팅된 기본 브라우저에 링크를 던저 열어주는 방식으로 팝업크기, 옵션을 제어하지 않음. 3. 수정완료
This commit is contained in:
parent
ce4d94957b
commit
a2686145ca
|
@ -113,7 +113,9 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
||||||
>(KEY_VER_INFO);
|
>(KEY_VER_INFO);
|
||||||
|
|
||||||
// WebLink init..
|
// WebLink init..
|
||||||
|
if (!this.weblink || this.weblink.length === 0) {
|
||||||
this.initWebLink();
|
this.initWebLink();
|
||||||
|
}
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.subscribe();
|
.subscribe();
|
||||||
|
@ -133,10 +135,9 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
||||||
>(KEY_URL_INFO);
|
>(KEY_URL_INFO);
|
||||||
|
|
||||||
if (!!urlInfo && !!urlInfo.webLink) {
|
if (!!urlInfo && !!urlInfo.webLink) {
|
||||||
this.weblink = urlInfo.webLink.filter(
|
// order by webLinkAllowedList..
|
||||||
weblink =>
|
this.weblink = urlInfo.webLinkAllowedList.map(showWeblink =>
|
||||||
urlInfo.webLinkAllowedList.filter(type => type === weblink.key)
|
urlInfo.webLink.find(weblink => weblink.key === showWeblink)
|
||||||
.length > 0
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if (urlInfo.webLinkAllowedList.indexOf(WebLinkType.Mail) > -1) {
|
if (urlInfo.webLinkAllowedList.indexOf(WebLinkType.Mail) > -1) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user