Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 7fdcf5f

Browse files
committed
add the sanitizer to the stack trace modules.
1 parent 513f08f commit 7fdcf5f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/components/simple-stack-trace/simple-stack-trace-directive.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
'use strict';
33

44
angular.module('exceptionless.simple-stack-trace', [
5+
'ngSanitize',
6+
57
'exceptionless.simple-error'
68
])
79
.directive('simpleStackTrace', ['$sanitize', 'simpleErrorService', function ($sanitize, simpleErrorService) {

src/components/stack-trace/stack-trace-directive.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
'use strict';
33

44
angular.module('exceptionless.stack-trace', [
5+
'ngSanitize',
6+
57
'exceptionless.error'
68
])
79
.directive('stackTrace', ['$sanitize', 'errorService', function ($sanitize, errorService) {

0 commit comments

Comments
 (0)