Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<app-chatbot-widget class="relative z-50"></app-chatbot-widget>
}

<bae-footer class="fixed w-full z-50 bottom-0 start-0"></bae-footer>
<bae-footer class="fixed w-full z-30 bottom-0 start-0"></bae-footer>

@if(isProduction){
<script type="text/javascript"> _linkedin_partner_id = "8700705"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=8700705&fmt=gif" /> </noscript>
Expand Down
12 changes: 10 additions & 2 deletions src/app/models/certification-standards.const.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
export const certifications = [
{ id: 1, name: 'SecNumCloud', mandatory: false , domesupported: true},
{ id: 2, name: 'BSI-C5', mandatory: false, domesupported: true },
{ id: 3, name: 'CISPE', mandatory: false, domesupported: true },
{ id: 4, name: 'EU Cloud CoC', mandatory: false, domesupported: true },
{ id: 5, name: 'CSA CCM', mandatory: false, domesupported: true },
{ id: 6, name: 'ISO/IEC 27001', mandatory: false, domesupported: true },
{ id: 7, name: 'TISAX', mandatory: false, domesupported: true },
{ id: 8, name: 'SWIPO', mandatory: false, domesupported: true },
//Information security
{ id: 1, name: 'ISO 22301:2019', mandatory: false , domesupported: true},
/*{ id: 1, name: 'ISO 22301:2019', mandatory: false , domesupported: true},
{ id: 2, name: 'ISO/IEC 27000:2018', mandatory: false, domesupported: true },
{ id: 3, name: 'ISO/IEC 27001:2022', mandatory: false, domesupported: true },
{ id: 4, name: 'ISO/IEC 27002:2022', mandatory: false, domesupported: true },
Expand All @@ -24,5 +32,5 @@ export const certifications = [
//Service level agreement
{ id: 18, name: 'ISO/IEC 19086-1:201', mandatory: false, domesupported: false },
{ id: 19, name: 'ISO/IEC 19086-2:2018', mandatory: false, domesupported: false },
{ id: 20, name: 'ISO/IEC 19086-3:2017', mandatory: false, domesupported: false }
{ id: 20, name: 'ISO/IEC 19086-3:2017', mandatory: false, domesupported: false }*/
]
6 changes: 3 additions & 3 deletions src/app/pages/product-details/product-details.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ <h3 class="text-2xl font-bold text-primary-100 dark:text-primary-50 text-left mb
No level
</h3>
}@else if(complianceLevel=='BL'){
<img class="z-10 dark:text-white rounded-md mr-2" src="assets/logos/baseline.png">
<img class="z-10 dark:text-white rounded-md mr-2 max-w-md" src="assets/logos/baseline.png">
} @else if(complianceLevel=='P') {
<img class="z-10 dark:text-white rounded-md mr-2" src="assets/logos/prof.png">
<img class="z-10 dark:text-white rounded-md mr-2 max-w-md" src="assets/logos/prof.png">
} @else {
<img class="z-10 dark:text-white rounded-md mr-2" src="assets/logos/profplus.png">
<img class="z-10 dark:text-white rounded-md mr-2 max-w-md" src="assets/logos/profplus.png">
}
<p class="mb-2 text-gray-800 dark:text-gray-200">
{{ complianceDescription }}
Expand Down
3 changes: 2 additions & 1 deletion src/app/pages/product-details/product-details.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ export class ProductDetailsComponent implements OnInit {
}
}
}

if(this.prodSpec.serviceSpecification != undefined){
for(let j=0; j < this.prodSpec.serviceSpecification.length; j++){
let serv = await this.api.getServiceSpec(this.prodSpec.serviceSpecification[j].id);
Expand All @@ -273,7 +274,7 @@ export class ProductDetailsComponent implements OnInit {
}
if(this.prodSpec.resourceSpecification != undefined){
for(let j=0; j < this.prodSpec.resourceSpecification.length; j++){
let res = this.api.getResourceSpec(this.prodSpec.resourceSpecification[j].id);
let res = await this.api.getResourceSpec(this.prodSpec.resourceSpecification[j].id);
this.resourceSpecs.push(res);
}
}
Expand Down
8 changes: 8 additions & 0 deletions src/app/shared/feedback-modal/feedback-modal.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { FeedbackServiceService } from "src/app/services/feedback-service.servic
import {LocalStorageService} from "../../services/local-storage.service";
import { lastValueFrom } from 'rxjs';
import { FeedbackInfo } from 'src/app/models/interfaces';
import { environment } from 'src/environments/environment';

@Component({
selector: 'feedback-modal',
Expand Down Expand Up @@ -81,6 +82,13 @@ export class FeedbackModalComponent implements OnInit {
}

hide(){
let feedbackInfo = this.localStorage.getObject('feedback') as FeedbackInfo;
let expiration = feedbackInfo?.expire ?? environment?.feedbackCampaignExpiration ?? 0;
let wantsFeedback : FeedbackInfo = {
"expire": expiration,
"approval": false
}
this.localStorage.setObject('feedback',wantsFeedback)
this.eventMessage.emitCloseFeedback(true);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export class MarkdownTextareaComponent implements ControlValueAccessor {
addEmoji(event:any){
this.showEmoji=false;
this.value += event.emoji.native
this.onChange(this.value);
}

addMarkdownTag(tag: string): void {
Expand Down
Loading