浏览代码

Fixed a couple of cosmetic issues.

jalbr74 6 年之前
父节点
当前提交
0d09cf77dd
共有 2 个文件被更改,包括 7 次插入1 次删除
  1. 2 1
      client/src/services/people.service.ts
  2. 5 0
      client/src/styles.scss

+ 2 - 1
client/src/services/people.service.ts

@@ -254,7 +254,8 @@ export default class PeopleService implements IPeopleService {
             .post(url, {
                 mode: 'simple',
                 username: query,
-                pwmFormID: formID
+                pwmFormID: formID,
+                includeDisplayName: (params && params.includeDisplayName) ? params.includeDisplayName : false
             }, {
                 cache: true,
                 timeout: httpTimeout.promise,

+ 5 - 0
client/src/styles.scss

@@ -3,6 +3,11 @@
 .ias-styles-root {
   @import "~@microfocus/ux-ias/src/ux-ias";
 
+  .ias-dialog {
+    // Need to fix this minor css problem in ux-ias until a version > 1.0.0-rc comes out.
+    position: fixed;
+  }
+
   // ux-ias normally applies the following to the body tag, but the way we are including ux-ias under .ias-styles-root
   // means we have to define it here.
   background-color: $body-bg-color;