forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.md
3262 lines (3163 loc) · 356 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
## Jansa-1 Alpha-1
### Added
* Added new Detailed Description field to Group edit/details screen enhancement ivanchuk/yes settings [(#6680)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6680)
* EMS validation: send only the listed fields to the API enhancement [(#6674)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6674)
* Introduce a DDF component for provider credentials validation enhancement react [(#6657)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6657)
* Deal with zones when running in pods enhancement [(#6652)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6652)
* Add APP_PATH to allow using Rails directly developer enhancement [(#6647)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6647)
* Use cypress for integration tests cypress dependencies enhancement test [(#6646)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6646)
* Identify invalid Catalog Items/Bundles in the UI [(#6448)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6448)
* Allow non-JSON responses in miqFetch (add `options.skipJsonParsing`) [(#6645)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6645)
* Added Tags for PxeServers and their items [(#6509)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6509)
* Added support for the Native viewer [(#6574)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6574)
* Toolbar: An advanced config setting 'custom_button_count' added to limit number of visible custom button groups on screen [(#6529)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6529)
* Automate Method editor has been changed to allow host+input params for playbooks, input params for workflows method types [(#6530)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6530)
* RBAC features added under Reconfigure VMs to control what options to be displayed on the Reconfigure VMs form [(#6469)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6469)
* Add page title for custom menu items [(#6387)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6387)
* Allow tagging or managing policies for Replicators, Pods, Nodes, Images [(#6379)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6379)
* Add Refresh button to individual Dashboard Widget [(#6334)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6334)
* Remove Tags from Network Topology View and others [(#6351)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6351)
* Dropbox removed in exchange for using support tool [(#6330)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6330)
* Toolbar: React rewrite and simplification. [(#5997)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5997)
* Make Automate Domains and Providers clickable from the list displayed through Tenant's Relationships [(#6144)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6144)
* Add Provider to List view of Infra/Hosts and Infra/Datastores [(#6283)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6283)
* Add Refresh button to Ansible Tower Jobs page [(#6293)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6293)
* Convert part of Infra Provider dashboard to React, add Quadicon [(#6248)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6248)
* Add button tag to generic object form [(#6226)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6226)
* Add abandon changes popup to tagging pages [(#6192)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6192)
* Enable Copy feature for ServiceRequests [(#5539)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5539)
* Add region id to subscription [(#2315)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2315)
* Added Snapshot button to Configuration menu [(#6199)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6199)
* Use standard rails methods to serve up photos [(#6200)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6200)
* Show Smart Management box on details view [(#6196)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6196)
* Toolbar implementation in React [(#115)](https://github.com/ManageIQ/react-ui-components/pull/115)
* Amazon - support Assume Role ARN [(#6170)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6170)
* Add option of copying tags [(#6164)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6164)
* Reconfigure: Edit vlan for Nic [(#6148)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6148)
* Remove history button [(#6050)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6050)
### Fixed
* Fix breadcrumb functionality on explorer screens that don’t contain trees [(#6056)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6056)
* Remove Advanced Search from the Config Mgmt Providers screen [(#6465)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6465)
* Remove filter highlighting in accordions when a filter has been created and not applied [(#6602)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6602)
* Display the toolbar for Report downloads on the Utilization ‘Report’ tab when data is available [(#6624)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6624)
* Add missing dropdowns on the Service Dialog preview screen [(#6630)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6630)
* Enable importing Tags for VMs using a CSV file [(#6633)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6633)
* Removed a broken Resume button for VMs and Instances [(#6581)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6581)
* Fixed missing data in PDFs generated from Saved Reports [(#6561)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6561)
* Fixed Pod information on the Container Build summary screen [(#6575)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6575)
* Styling improvements on the Container Build summary screen [(#6577)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6577)
* Fixed VM & Instance retirement from the workflow screen [(#6585)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6585)
* Enabled reconfiguring of VMs displayed in a nested list [(#6605)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6605)
* Enabled flash message after managing policies on non-explorer screens [(#6622)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6622)
* Prevent rendering User to Look Up form field twice and with same id [(#6565)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6565)
* Display Cancel after applying changes in non-explorer Compare screen [(#6542)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6542)
* Fixed code to pass in `service_template` in ae_attributes hash [(#6533)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6533)
* Allow performing operations on Instances of a chosen Security Group [(#6520)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6520)
* Allow performing operations on Instances of a chosen Network Router [(#6498)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6498)
* Allow performing Shelve Offload operation for Instances in a nested list [(#6491)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6491)
* Allow performing operations on Instances of a chosen Cloud Subnet [(#6488)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6488)
* Allow performing operations on Instances of a chosen Cloud Network [(#6458)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6458)
* Entry Point modal styling fix [(#6511)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6511)
* Reimplement token generation for cockpit webconsole proxy [(#6522)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6522)
* Display Search box in Infra Networking page [(#6539)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6539)
* Multiple issues fixed on action edit screen [(#6499)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6499)
* Machine Credential: don't access options hash when null [(#6466)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6466)
* Make Save button respond properly on changes in User's Available Groups [(#6369)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6369)
* Disable Save/Reset buttons after discarding changes for Subscription [(#6292)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6292)
* Rewritten help and user menu structure, top-navbar component and divided it into REACT components [(#6197)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6197)
* Fix cancel/reset buttons' reaction to C&U collection checkboxes [(#6432)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6432)
* Compare Treegrid fix [(#6417)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6417)
* Call `miqCheckForChanges` before changing tabs. [(#6431)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6431)
* Add fallback for clicking on a section w/o permissions. [(#6414)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6414)
* Display user info after clicking on Lookup while provisioning VM [(#6391)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6391)
* Allow create Service Dialog from Template on Ansible/Templates screen, depending on navigation steps [(#6412)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6412)
* Service Catalog styling fix [(#6405)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6405)
* Display name instead of [object Object] for the Host in Network Port's Relationships table [(#6403)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6403)
* Policy: simplify handling of @trees, make in an array. [(#6398)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6398)
* Set empty report submenus to empty arrays instead of empty strings [(#6368)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6368)
* Allow performing SSA on Datastores in Datastore Clusters accordion [(#6298)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6298)
* Show name in success catalog form messages [(#6352)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6352)
* Make Save button disabled after canceling User's password changes [(#6365)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6365)
* Optimization - consistent date formats [(#6385)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6385)
* ReportDataTable - fix error when data.report is null [(#6386)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6386)
* Unify the service catalog order button handling on list/single views [(#6389)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6389)
* Allow editing and other actions on selected Host Aggregate [(#6267)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6267)
* Disable "Apply" button when all sections are deselected. [(#6278)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6278)
* Display only one Back button for Policy simulation [(#6316)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6316)
* Fix edit of GOD custom button [(#6322)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6322)
* Fix logout on group change [(#6325)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6325)
* Change toolbar delete buttons for Button and Button Group to use generic code [(#6230)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6230)
* Fix error on Cloud Provider Dashboard [(#6198)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6198)
* Allow resetting changes while editing Zone's Password or Verify Password fields [(#6217)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6217)
* Fix tagging for Edit Group and Provisioning screens [(#6235)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6235)
* Provider validate - don't attempt to directly connect from the UI [(#6237)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6237)
* Fixed low z-index on ddf select menu. [(#6264)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6264)
* fix styling issue in header [(#6276)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6276)
* Test against the right accor when switching to chargeback reports [(#6285)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6285)
* Fixed lost focus on code editor after first state update. [(#6249)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6249)
* Remove outdated automate import/export styling [(#6247)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6247)
* Remove outdated schedule editor styling [(#6245)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6245)
* Angular form css cleanup [(#6243)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6243)
* Remove custom styling from svc dialog import/export [(#6242)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6242)
* Fixed placement alignment. [(#6238)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6238)
* Convert Tenants details page to textual summary and add Relationships with Services Automate Domain and Providers [(#5675)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5675)
* Throttle notification toast messages and display only 3 at most [(#6202)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6202)
* Add abandon changes popup to data driven forms components [(#6184)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6184)
* Fix miqCheckForChanges in as-vm angular forms [(#6223)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6223)
* Validate content for non-required fields [(#421)](https://github.com/ManageIQ/ui-components/pull/421)
* [EmbeddedAnsible] Fix stdout sanitization [(#1594)](https://github.com/ManageIQ/manageiq-ui-service/pull/1594)
* Display tag better with missing category in report editor [(#6188)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6188)
* Display tenant only from current region [(#6187)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6187)
* Reconfigure: Fix UI inconsistentsies add disk [(#6183)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6183)
* Fix traceback in edit report preview [(#6182)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6182)
* Remove Timelines tab from Report editor [(#6181)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6181)
* Added missing gettext for "Red Hat Software Updates" [(#6168)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6168)
* Make Save button respond properly on changes in NTP Servers section while editing a Zone [(#6162)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6162)
* Timelines title [(#6156)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6156)
* Using class that includes both Job and Workflow templates [(#6146)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6146)
* Exclude compare and drift download actions when remembering last tab [(#6134)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6134)
* Correctly catch & handle API errors when creating orchestration template [(#6116)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6116)
* Add Back button to policy simulation page for non-explorer [(#6099)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6099)
* Allow comparing Hosts and VMs/Instances displayed as a nested list [(#6044)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6044)
## Ivanchuk-4
### Added
* Automate Method editor has been changed to allow host+input params for playbooks, input params for workflows method types [(#6530)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6530)
* Allow non-JSON responses in miqFetch (add `options.skipJsonParsing`) [(#6645)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6645)
### Fixed
* Update gettext invocation and gettext catalog [(#6154)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6154)
* Select active snapshot instead of the last one in the snapshots [(#6103)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6103)
* Fix Vm & Instance retirement from workflow screen [(#6585)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6585)
* Hide Advanced Search in Config Mgmt Providers screen [(#6465)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6465)
* Fix saving of ems_refresh_worker and ems_metrics_collector_worker [(#6678)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6678)
* Allow non-JSON responses in miqFetch (add `options.skipJsonParsing`) [(#6645)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6645)
* Remove tree breadcrumbs [(#6193)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6193)
* Allow importing Tags for VM using a CSV file [(#6633)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6633)
* Add titles for editor of service dialogs [(#6085)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6085)
## Ivanchuk-3
### Added
* Automate Method editor has been changed to allow host+input params for playbooks, input params for workflows method types [(#6530)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6530)
### Fixed
* Remove Timelines tab from Report editor [(#6181)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6181)
* Show name in success catalog form messages [(#6352)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6352)
* Display user info after clicking on Lookup while provisioning VM [(#6391)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6391)
* Machine Credential: don't access options hash when null [(#6466)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6466)
* Reimplement token generation for cockpit webconsole proxy [(#6522)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6522)
* Fixed code to pass in `service_template` in ae_attributes hash [(#6533)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6533)
## Ivanchuk-2
### Added
* Amazon - support Assume Role ARN [(#6170)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6170)
### Fixed
* Updated translations for ivanchuk [(#6195)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6195)
* Correctly catch & handle API errors when creating orchestration template [(#6116)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6116)
* Set typ of tab before checking privilegies [(#6147)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6147)
* Fix traceback in edit report preview [(#6182)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6182)
* Sort Requester dropdown by label [(#6201)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6201)
* Display tenant only from current region [(#6187)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6187)
* Fix loading of Network Port details screen [(#6277)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6277)
* Add button tag to generic object form [(#6226)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6226)
* Improve volume attachment user experience [(#6189)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6189)
* Fix spinner behavior with various buttons on the Adv Search modal [(#6100)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6100)
* Fix logout on group change [(#6325)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6325)
* Add missing gettext to HostController [(#5992)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5992)
* Added a nil check. [(#6133)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6133)
* DialogUser - use DialogData.outputConversion before submit and refresh [(#6291)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6291)
## Ivanchuk-1 - Released 2019-09-18
### Added
- Add Set Ownership to Key Pairs [(#5973)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5973)
- Remove delimiter for Request ID [(#5872)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5872)
- Add title for clone_to_template edit action [(#5893)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5893)
- Add formatting to report data filter display. [(#5928)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5928)
- Remove Embedded Ansible repository unsused attributes [(#5848)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5848)
- Unify the HTML5 canvas-based remote consoles under a single endpoint [(#5761)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5761)
- Add Copy option to Catalog Item/Bundle [(#5667)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5667)
- Add scopes for filtering Archived/Orphaned VMs based on RBAC [(#5357)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5357)
- Remove deprecated Networks Load Balancer menu [(#5754)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5754)
- [RFE] Add Clone dashboard form [(#5730)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5730)
- Added Price to Catalog Items. [(#5719)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5719)
- Display Lifecycle State on Service details screen [(#5736)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5736)
- Increased size of Description field [(#5695)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5695)
- Added Zone drop down to angular and non-angular catalog item editor & Automate Task Schedules [(#5626)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5626)
- Add Tenant relationship in Providers Automate Domain and Services [(#5575)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5575)
- Use feature detection to determine whether AZ should be selectable [(#5522)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5522)
- Add Tenants tree to Catalog Item Edit page [(#5445)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5445)
- Add severity to Alerts [(#5326)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5326)
- Added Dialog name info on the Catalog Item summary screen [(#5599)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5599)
- Open the homonymic tree nodes for dialog editor entrypoint selection [(#5543)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5543)
- Remove deprecated Optimize Planning default menu [(#5430)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5430)
- Remove the need for the options argument when fetching node kids in TreeBuilder [(#5547)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5547)
- Remove the replication exclude tables [(#5546)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5546)
- Add support for PF4 styling through webpack [(#5537)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5537)
- Remove the second (type) argument from TreeBuilder classes [(#5495)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5495)
- Add new Tagging instead of RBAC tree for groups [(#5482)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5482)
- Adding a welcoming page prompting to add a Provider [(#5434)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5434)
- Menu Simplification: Drop the Optimize section [(#5485)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5485)
- Menu Simplification: extract Configuration into the top-right bar [(#5453)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5453)
- Menu Simplification: move Utilization from Optimize to Cloud Intel [(#5448)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5448)
- Add Provider to Clusters tile list views [(#5425)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5425)
- Add Compliance details to Provider details page [(#5398)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5398)
- Remove Catalog Item / Catalog Bundle Modal [(#5388)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5388)
- Display IDs of VMs Reports Result ... [(#5342)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5342)
- Allow restoring backups to new volumes [(#4623)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4623)
- Use supports_volume_resizing? to toggle the Volume size field [(#5346)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5346)
- Add Enable/Disable button to Schedule summary page [(#5344)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5344)
- Add Cancel button to policy simulation page [(#5341)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5341)
- Redesigned breadcrumbs with new logic [(#4468)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4468)
- Add tagging component [(#3570)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3570)
- Added promise debounce library (with updated typescript) and async validation in Catalog form [(#5284)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5284)
- Added hostname fallback fields for openstack amqp events. [(#5270)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5270)
- CustomButtonSet - don't touch children/members directly set button_order [(#5187)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5187)
- Dialog Editor - rework tree params *don't* pre-initialize the tree [(#5267)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5267)
- Add error when clicking upload image without selecting a file [(#5265)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5265)
- Allow to print (export to PDF) the right size recommendations of a VM [(#5252)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5252)
- User Edit screen - link to button [(#5239)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5239)
- Automate Datastore Schema Edit reset click message [(#5237)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5237)
- Add back paging options [(#5229)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5229)
- Rework dual list [(#5228)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5228)
- Add listnav to Embedded Ansible pages [(#5222)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5222)
- Add Status Attribute to Cloud Volume Detail screen [(#5160)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5160)
- Extract the decorators into a separate repository [(#5158)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5158)
- Authorise manage tenant quotas as tenant product feature in UI [(#5123)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5123)
- Add missing gettext to zone dropdown in My Tasks screen [(#5122)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5122)
- Add translatable labels to Host textual summary [(#5116)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5116)
- Add missing gettext into ems_common/angular/ form.html.haml [(#5115)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5115)
- Cluster textual summary: add translatable label [(#5114)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5114)
### Fixed
- Removed Pause & Resume Provider buttons from UI. [(#6067)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6067)
- Fixed to set saveable state regardless of number of items selected. [(#6113)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6113)
- Fixed call that build list of Storages to build Host file drop down [(#5952)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5952)
- Remove report names from group settings hash when reports are deleted [(#5950)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5950)
- Switch to Advanced tab when only error is "Request is required" [(#5873)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5873)
- Disable <Choose a Role> option to prevent error while adding Group [(#5933)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5933)
- Do not remember tab when downloading report from list view. [(#5964)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5964)
- Build the selected node key from the session stored model in RBS [(#5974)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5974)
- Make select in new cloud tenant always headed to bottom [(#6018)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6018)
- Fix breadcrumbs in control section [(#6004)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6004)
- Removed `Tenant` column from list view. [(#5996)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5996)
- Fixed correct setting of record to get counts of relationships [(#5995)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5995)
- Fixed API endpoint for GO object custom button dialogs. [(#6052)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6052)
- Call miqCheckForChanges in breadcrumbs [(#6003)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6003)
- Fix custom button group `Display on Button` option [(#5857)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5857)
- Select the features tree items when 'everything' is allowed [(#5858)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5858)
- Do not build the regex for embedded method when there's no fqname [(#5866)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5866)
- Fixed container provider custom button dialog redirect. [(#5869)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5869)
- Allow returning back to the previous controller, after clicking on Back button and to cancel policy sim properly [(#5839)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5839)
- Fix resizer blocking paginator elements [(#5874)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5874)
- Removed gettext changing value for Analysis Profiles [(#5859)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5859)
- Fix Policy breadcrumbs when coming from GTL page [(#5814)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5814)
- Generalized check for accordion in params when selecting (saved)reports [(#5837)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5837)
- Added missing argument in function definition [(#5898)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5898)
- Show value of Locked/Reset fields when value is false or not set. [(#5900)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5900)
- Filter out Maintenance zone from the drop down [(#5899)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5899)
- Fixed issues with 'Back' button on right size screen [(#5878)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5878)
- Make Add button respond properly on changes while adding Catalog Item [(#5472)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5472)
- Fixed Error in Restore Cloud Volume Backup [(#5830)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5830)
- Make the check against Satellite organization safe to fix RHSM issues [(#5908)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5908)
- Make editing schedule with EVM Group/Tenant type work [(#5826)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5826)
- Propagate parent model into GTLs on InfraNetwork switches [(#5902)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5902)
- Filters header renamed to Global Filters [(#5905)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5905)
- user_input_filter: Don't autofocus selects [(#5906)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5906)
- Clear modal after Applying advanced search [(#5909)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5909)
- views: remove unneeded compliances join [(#5919)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5919)
- Fix button sets order in tree [(#5914)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5914)
- Catalog item removal modal: disable delete button if API data incomplete [(#5915)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5915)
- Add '<No Depot>' option to Collect Logs form [(#5834)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5834)
- Remove Load Balancer button from Network Topology page [(#5918)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5918)
- Changed model name when showing list of Tower Templates. [(#5925)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5925)
- Circling back and removing compliance join for all [(#5926)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5926)
- Fix display of Container Project Compliance Policies [(#5927)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5927)
- GOD's button group can have buttons assign/unassign during create/edit [(#4913)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4913)
- Automate import - use format.json, not format.js when doing render :json [(#5881)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5881)
- Report results: fix toolbar button display when in "filter". [(#5930)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5930)
- Provider edit - move message about a username near the field, fix everything [(#5207)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5207)
- Get proper record class while performing operations on Managed VMs of a chosen Datastore [(#5867)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5867)
- Fix error when canceling addition of new schedule [(#5932)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5932)
- Update datepicker when start date changed [(#5920)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5920)
- Custom Button name is set by the factory [(#5810)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5810)
- Reverted changes to git import form. [(#5792)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5792)
- Set value of hash to be deleted from saved data. [(#5789)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5789)
- Fix displaying 'Add a Provider' page on a fresh appliance [(#5783)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5783)
- Display container Map Tag delete confirmation message [(#5727)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5727)
- Adjust the test against the accordion name at saved reports [(#5779)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5779)
- Fix error viewing Customize tab on Requests [(#5774)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5774)
- Ensure replication related flash messages show task name [(#5769)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5769)
- Fix overrided color for disabled Timelines link [(#5766)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5766)
- Fix catalog item delete when part of catalog bundle [(#5750)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5750)
- Do not filter records when loading Pre Provisioning screen. [(#5747)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5747)
- Fixed issue introduced in c7536077b36b56ebbaa9fe9ec6bbcf22aab32248 [(#5743)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5743)
- Rebuild list of zones when deleting a resource from Catalog bundle [(#5734)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5734)
- Require and permit the :quotas subhash [(#5717)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5717)
- Expression Editor fix [(#5710)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5710)
- Add Ansible related inputs to GOD haml [(#5166)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5166)
- set `@root_class` only if it is not already set by subclass [(#5658)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5658)
- Update Workers Settings form data in @edit after saving [(#5609)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5609)
- Removed 'type' argument passed to the tree builder [(#5549)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5549)
- Fix adding new trusted forests for LDAP authentication [(#5548)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5548)
- Make Organization required on RHN updates upon 1+ available orgs [(#5540)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5540)
- Unify sorting in GOD of Button Groups [(#5513)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5513)
- Fix squash button functionality on Policy Sim tree [(#5492)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5492)
- Fix async validation in catalog form [(#5440)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5440)
- Remove x_edit_buttons from Catalog Edit Tags [(#5439)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5439)
- Don't show x_edit_buttons for tagging screen [(#5436)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5436)
- Fix: error loading configuration screen when key/value settings exists on top level [(#5428)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5428)
- Fix changing title after clicking quadicon in Instance Policy sim page [(#5423)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5423)
- Fixes breadcrumb when disabling/enabling schedules [(#5422)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5422)
- Display info about unavailable fields while adding/editing report [(#5418)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5418)
- Action Details screen styling fix [(#5407)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5407)
- Fix error while clicking quadicon after running policy simulation [(#5405)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5405)
- Added automatic virtual DOM clean up. [(#5404)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5404)
- Container Projects Dashboard & Alerts Overview fix [(#5393)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5393)
- Swap ng-if with ng-show on VMRC Console in ems common. [(#5334)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5334)
- Put back the missing TreeBuilderUtilization#get_tree_custom_kids [(#5411)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5411)
- Cancel and save buttons clear @sb[:action] in miq_ae_class [(#5399)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5399)
- Fix room display in physical infra summary views [(#5386)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5386)
- Fix preselect node in servers by roles tree under diagnostics [(#5382)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5382)
- Adjust accordion height calculation hack to the new breadcrumbs [(#5381)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5381)
- Fix missed argument change for compliance history tree [(#5376)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5376)
- Fixes segmentation_id and physical_network required (in Cloud Network form) [(#5364)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5364)
- Subscription ID is required when adding readOnly when editing (Azure) [(#5359)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5359)
- Allow user to select Network Port for provisioning [(#5103)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5103)
- Lock enzyme adapter version to stop failing travis. [(#5336)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5336)
- Automate import service fix. [(#5327)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5327)
- Remove unused variable from infra networking controller [(#5317)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5317)
- styling fix for vm edit screen [(#5312)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5312)
- Container trends chart - wait for loadingDone before displaying pf-trends-chart [(#5310)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5310)
- Fix unhandled promise catch in catalog form [(#5308)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5308)
- When activating a tree node make it visible by scrolling onto it [(#5306)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5306)
- Fix highlighting the condition in accordion after creating it [(#5302)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5302)
- Fixed wrong keyword for selected nodes in TreeBuilderAlertProfileObj [(#5292)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5292)
- Fixes value of validate_id in host form [(#5289)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5289)
- Fix add new action [(#5286)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5286)
- Add All Custom Button Events page to Cloud Network [(#5277)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5277)
- Do not show Refresh button on Monitoring page [(#5258)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5258)
- Advanced Search Save: don't create unnecessary flash message [(#5220)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5220)
- Fix sumary screen for catalog item with deleted provider template [(#5193)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5193)
- Allow pausing/resuming foreman and ansible tower providers [(#5173)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5173)
- Add endpoint url for azure [(#4304)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4304)
- Fix Expression Builder to load page display only once per dropdown pick [(#5245)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5245)
- Check button's inputs before looking for records [(#5241)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5241)
- Do not hide the spinner before the custom button simulate redirect [(#5236)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5236)
- Fix database connections page [(#5235)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5235)
- Ansible Tower & Foreman edit - explicitly warn when Zone.visible.empty? [(#5225)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5225)
- Display widget's title in full screen of widget result [(#5159)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5159)
- Dashboard (under Reports) - fix broken accordion_select; use @dashboardnot @db [(#5162)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5162)
- Properly handle non-existent hash key [(#5161)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5161)
- Show breadcrumbs when redirected from another controller [(#5148)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5148)
- Unify sorting in GOD page [(#5146)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5146)
- Send button_order via API [(#5143)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5143)
- Rename WebsocketWorker to RemoteConsoleWorker [(#5136)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5136)
- Flavor add form converted to data-driven-forms [(#5055)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5055)
- Fix labels for Scale Infrastructure Provider form [(#4896)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4896)
- Allow the suspension of cloud infra and physical infra providers [(#4269)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4269)
- Fixed regression on schedules screen due to bad towhat refactoring [(#5130)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5130)
- Update misleading form label for new Cloud Tenant form [(#5127)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5127)
- Add missing gettext into exp_editor.html.haml [(#5125)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5125)
- Updated right cell header [(#5124)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5124)
- Fixed saving of role/group visibility for a widget [(#5119)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5119)
- set_ownership - use miq_template (not vm) for images [(#5113)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5113)
- Clean out cache of MiqProductFeature at CUD tenant actions in UI process [(#5108)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5108)
- Fix CatalogItem tree_select() [(#5096)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5096)
### Removed
- Drop patternfly 4 support again [(#5642)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5642)
- Drop the timeline listnav decision logic for dashboard/timelines [(#5639)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5639)
- Drop trees displaying VMs for providers clusters resource pools [(#5623)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5623)
## Hammer-11
### Fixed
- Automate method editing bugz [(#5843)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5843)
- Fixed API endpoint for GO object custom button dialogs. [(#6052)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6052)
## Unreleased as of Sprint 118 - 2019-08-19
### Added
- Add Set Ownership to Auth Key Pairs [(#5967)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5967)
- Change service-ownership-form to pull data from the API [(#5863)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5863)
### Fixed
- Fix automate/simulation breadcrumbs [(#6033)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6033)
- Use react-codemirror onChange event instead of onBeforeChange. [(#6030)](https://github.com/ManageIQ/manageiq-ui-classic/pull/6030)
- Switch the clickability between networks and storage trees [(#5990)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5990)
- Add the configuration toolbar button on Ansible/Templates screen [(#5968)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5968)
- Remove Host Discover and Add buttons [(#5963)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5963)
- Do not append title to breadcrumbs on show_list pages [(#5904)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5904)
- Drop legacy dialog user [(#5864)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5864)
## Hammer-10 - Released 2019-08-15
### Fixed
- Added determine_api_endpoints for ContainerVolume [(#5828)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5828)
- Dialog copy - remove ids pointing to the original dialog [(#5856)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5856)
- user_input_filter - don't send Cancel on Apply [(#5875)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5875)
## Unreleased as of Sprint 117 - 2019-08-05
### Fixed
- Store the nodes as objects in the TreeBuilder instead of JSON [(#5889)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5889)
- Fix Embedded Ansible Respository refresh [(#5849)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5849)
## Hammer-9 - Released 2019-07-23
### Removed
- Revert faster services PR 5366 [(#5768)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5768)
## Hammer-8 - Released 2019-07-02
### Fixed
- Advanced search modal - only render once, always, hidden [(#5629)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5629)
- Services use turbo button [(#5366)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5366)
- Display the custom login logo on the about modal [(#5685)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5685)
- Added missing Model name to return that is used to load advanced search [(#5733)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5733)
## Hammer-7 - Released 2019-06-10
### Added
- Inform user about outdates belongsto filters [(#5511)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5511)
- Showing default value for date/time picker in service dialog preview [(#5400)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5400)
### Fixed
- Remove wrong and redundant check [(#5506)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5506)
- Do not load advanced search on pre-provisioning screen. [(#5581)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5581)
- Fix creating a group after validation message 'already exists' [(#5354)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5354)
## Hammer-6 - Released 2019-05-22
### Fixed
- miqSetToolbarCount - fix setting toolbar counts [(#5403)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5403)
- Do not reset entrypoints when editing an existing catalog bundle [(#5462)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5462)
- Region Replication - refresh code mirror after load [(#5095)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5095)
- Dont show gtl checkbox when display list from chart click [(#5144)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5144)
- Delete the "report_menus" instead of :report_menus when resetting [(#5212)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5212)
- Use base_model name instead of demodulize [(#5182)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5182)
- Fix the label of Custom Button Events for infra providers [(#5251)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5251)
- Fixed explanation of brand image positioning under Custom Logos [(#5250)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5250)
- Remove logic for request screen dialogs [(#5126)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5126)
- Fix error when clicking on created Catalog Item in the list [(#5481)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5481)
- Fixed check in if condition [(#5176)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5176)
- Use numeric comparison for IDs [(#5503)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5503)
- Validate Classification before accessing description [(#5526)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5526)
## Hammer-5 - Released 2019-04-23
### Added
- Add MenuUpdateMixin [(#4999)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4999)
- Add IDs to vertical menu leaf items [(#5063)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5063)
- Added "Preserve owner?" checkbox on Import report screen [(#5060)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5060)
### Fixed
- Fix wrong displayed elapsed time in the service [(#5260)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5260)
- Add Memory for Amazon Availability Zones [(#5256)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5256)
- Fixed condition to use correct feature id [(#5362)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5362)
- Use ljust to left justify and pad strings [(#5254)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5254)
- Fix the access to child services from parents under My Services [(#5384)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5384)
- Fixed display of default memory threshold correctly on new appliance [(#5394)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5394)
- Add safeguard for VMs without ext_management_system [(#5339)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5339)
- Don't throw exception when template is not found in Provisioning [(#5345)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5345)
## Hammer-4 - Released 2019-03-29
### Fixed
- Fix enabling Power operations for a template [(#5128)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5128)
- Use timeline listnav only for dashboard controller [(#5218)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5218)
- Catch 400 error and display it in flash message in GOD [(#4951)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4951)
- [Performance] Remove compliance from VmOrTemplate includes [(#5283)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5283)
- Stop spinner after rednering flash message [(#5118)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5118)
- Allow Approver user to deny the request [(#5255)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5255)
- Fix missing flash message for Re-check Authentication Status [(#5243)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5243)
- Ansible job launch confirmation message fix [(#5226)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5226)
- Hide services from the Services tree as its redundant and slow [(#5335)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5335)
## Hammer-3 - Released 2019-03-06
### Fixed
- Do not allow to embed a method into itself in automate [(#4753)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4753)
- Added missing unit label [(#5195)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5195)
- Add missing styling to user input filter modal [(#5208)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5208)
- Use onchange only for radio buttons [(#5097)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5097)
- Display missing checkboxes for workers under Diagnostics [(#5223)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5223)
- Container dashboard utilization metrics - fix hourly metrics [(#5232)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5232)
- Don't allow adding another svc bundle into an existing bundle [(#5221)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5221)
- Use correct dialog product features in MiqAeCustomizationController [(#5197)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5197)
## Hammer-2 - Released 2019-02-07
### Fixed
- Fix usage of TreeBuilder.extract_node_model_and_id in OpcControler [(#5142)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5142)
- Fix missing paging in provisioning template selection [(#5149)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5149)
## Hammer-1 - Released 2019-01-15
### Added
- Swift DB Backups [(#4684)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4684)
- Queue operations for pglogical replication set-up [(#4628)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4628)
- Allow nesting physical chassis [(#4594)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4594)
- Showing Location LED state for physical chassis [(#4535)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4535)
- Add sysprep support for ovirt [(#4211)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4211)
- Add links to networks and subnets for infra nodes [(#4003)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4003)
- Update 'About Modal' plugin section styling [(#4599)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4599)
- Describe better chargeback metric in Rate Editor [(#4596)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4596)
- Show CloudTenants in network manager's topology view [(#4569)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4569)
- Add Chassis to PhysicalInfra dashboard and listnav [(#4567)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4567)
- Show relation "security group belongs to router and subnet" [(#4542)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4542)
- Display custom button events for the records that have them [(#4514)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4514)
- Add restful redirect rule for notifications arriving from V2V [(#4505)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4505)
- About modal: render pretty looking plugin names [(#4496)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4496)
- Add support for links to a details page in the notification drawer [(#4492)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4492)
- Add a tooltip to health state of the cards in the physical infra dashboard [(#4453)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4453)
- Add CloudVolumeType views [(#4446)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4446)
- add sshkey support to OpenStack Cloud [(#4388)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4388)
- Allow to upload and display a custom brand image on login/header [(#4376)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4376)
- Increase memory available to webpacker [(#4519)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4519)
- Changing Topology icons colors to black [(#4434)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4434)
- Display Plugin commit hashes in the About Modal [(#4423)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4423)
- Allow registering events to timelines using regexes [(#4375)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4375)
- Add a source definition when invoking CustomButton [(#4363)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4363)
- Allow skipping empty event group levels [(#4440)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4440)
- Added promise middleware to enable v2v redux-actions. [(#4407)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4407)
- Added option to add additional attributes react html tag. [(#4406)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4406)
- Allow Openstack Tag Mapping [(#4400)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4400)
- Towards provider plugins: dialog definition action [(#4377)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4377)
- Use dialog-user component for more custom button object types [(#4374)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4374)
- Pluggable provider button actions [(#4315)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4315)
- Add UI support for a new physical server alert [(#4313)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4313)
- AWS S3 Database Backups [(#4300)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4300)
- Adding Physical Chassis Location LED actions [(#4255)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4255)
- Show Configuration Workflows in UI [(#4138)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4138)
- VM: associate only unused floating IPs [(#4357)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4357)
- Adding Physical Storages to Physical Chassis summary page [(#4354)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4354)
- Set the Status of some topology nodes [(#4347)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4347)
- Display "CloudSubnet has many NetworkPorts" relation [(#4342)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4342)
- Display "FloatingIp belongs to CloudNetwork" relation [(#4337)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4337)
- Make name and description visible on CloudTenant details page [(#4332)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4332)
- Display "FloatingIp belongs to NetworkRouter" relation [(#4331)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4331)
- Event Details for notification emails [(#4291)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4291)
- adding support to filter events by new group levels [(#4217)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4217)
- Adding PhysicalStorages list and summary pages [(#4167)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4167)
- Adds Physical Chassis List & Details pages [(#4065)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4065)
- Physical Infrastructure dashboard charts [(#3837)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3837)
- Add Ansible Repository refresh output page [(#3762)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3762)
- FormButtons component with redux [(#3509)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3509)
- Set Status of Physical Servers and Physical Switches in Topology View [(#4288)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4288)
- Remove extract-text-plugin [(#4268)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4268)
- Provider dialogs - React [(#4267)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4267)
- Implement toolbar extension mechanism for providers [(#4262)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4262)
- Makes Git URL field bigger [(#4260)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4260)
- Adding physical switches card to physical infra dashboard [(#4249)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4249)
- Extracting physical ports of a switch to a new page [(#4141)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4141)
- Adding connections between servers and switches on topology page [(#3799)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3799)
- Rack page toolbar [(#3634)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3634)
- Add OpenID-Connect authentication support [(#2855)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2855)
- Teporarily removing the topology icon from physical infra view [(#4216)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4216)
- Hide quadicon setting for decorators that inherit the quadicon method [(#4209)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4209)
- Use the browser's native printing for asynchronously generated saved reports [(#4201)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4201)
- Use the client-side printing for reports where the PDF was generated synchronously [(#4130)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4130)
- Adding power operation in physical switch pages [(#4084)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4084)
- Display two new added columns in Openscap rule results page [(#4078)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4078)
- Add folder dropdown to VM Migrate. [(#4045)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4045)
- Fix to show meaningful policy name when add/delete it in audit.log [(#4017)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4017)
- Add generic toolbar actions and use it in physical servers [(#3756)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3756)
- Add icon for host_failure event. [(#4139)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4139)
- Client-side print/export to PDF for dashboard widgets [(#4114)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4114)
- TextualSummary: unify power states. [(#4085)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4085)
- Added separate features for Requests subtabs [(#4062)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4062)
- Use {reportrequest}_admin_user? [(#3993)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3993)
- Hide "Add New Network Manager" unless Nuage is enabled [(#3979)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3979)
- Add to the reconfigure screen the ability to attach ISOs to CDRoms (VMware) [(#3956)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3956)
- Use pficon-unknown fonticon for unknown Operating Systems in quads [(#4002)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4002)
- Display Cloud Tenants relation at Network Manager [(#3995)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3995)
- Display port group for VM instances [(#3992)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3992)
- Better inflector support for ui rake tasks and asset plugins [(#3986)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3986)
- Replace ff-template with pficon-template [(#3985)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3985)
- Ability to see/save Config settings for Region and Zone records. [(#3967)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3967)
- Add Search to Currencies' drop down when adding/editing Chargeback Rate [(#3962)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3962)
- Add a new "Endpoint URL" field in AWS endpoints [(#3958)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3958)
- Add ability to search through the available fields while editing report [(#3899)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3899)
- Component registry - support both pure function component and class components [(#3941)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3941)
- Change text color to blue for different columns when displaying Drift for VM [(#3938)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3938)
- Wrap type-based tooltips in quadicons with ui_lookup [(#3935)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3935)
- Added React component factory. [(#3931)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3931)
- Made "Advanced" tab visible for all Server nodes. [(#3925)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3925)
- Adapting the Network Devices page to the new ports relationship [(#3744)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3744)
- http helpers for react API to new js [(#3662)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3662)
- Implementing change password view [(#3294)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3294)
- Showing authentication status in Physical Provider list [(#3199)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3199)
- Update physical server toolbar buttons [(#3876)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3876)
- Add support for displaying storage device details [(#3830)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3830)
- Update toolbar icons [(#2925)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2925)
- Server summary page changes [(#3754)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3754)
- Add button in toolbar for remotely accessing a physical server [(#3690)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3690)
- Add delete button to network router list and detail screen [(#3436)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3436)
- Add Compliance Information [(#3419)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3419)
- Add redirect to request show_list page [(#3409)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3409)
- Add wrapper for widget in Dashboard [(#3281)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3281)
- Add a physical rack to the topology [(#3369)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3369)
- Update menu icons [(#2917)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2917)
- Add Keystone Domain to EmsInfra form [(#3632)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3632)
- Do not use .scss.erb for loading assets as there's asset_url in SASS [(#3580)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3580)- Webpack - CommonsChunkPlugin - force for node_modules [(#3576)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3576)
- Update Expression Editor Styling [(#3545)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3545)
- $http - redirect to login on 401, same as API [(#3546)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3546)
- Use fileicon instead of the newly introduced state_icon in decorators [(#3537)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3537)
- add additional presets for v2v [(#3527)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3527)
- Add RBAC and Tagging Support to Ansible Repositories [(#3513)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3513)
- Add RBAC and Tagging Support to Ansible Credentials [(#3507)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3507)
- Change the way that network device details are displayed [(#3398)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3398)
- Add RBAC and Tagging Support to Ansible Playbooks [(#3522)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3522)
- Add Default View settings for Automation Ansible screens [(#3573)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3573)
- Fix name of 'Physical Infrastructure Providers' on the Physical Infrastructure Providers page [(#3574)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3574)
- tsconfig - enable allowJs, jsx:"react" [(#3575)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3575)
- StaticController - add ApplicationHelper for helpers [(#3547)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3547)
- Changed an icon for toolbar button [(#3278)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3278)
- Add capture metrics feature [(#3188)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3188)
- Quadicon improvements [(#3046)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3046)
- Parsing disk capacity into physical server [(#3208)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3208)
- Styling changes to the table component in Generic Object Definition screen [(#3197)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3197)
- Update Cap & U option styling [(#2961)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2961)
- Provider forms: pass flash messages throught the session rather than url [(#2924)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2924)
- Add column to MW Deployments [(#2850)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2850)
- add support for refreshing physical servers [(#2843)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2843)
- Enable new dialog-user feature for more custom buttons [(#2671)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2671)
- Proper type for openstack_infra + optimization [(#2528)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2528)
- Revert "form button styling clean up" [(#2685)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2685)
- Simplify ApplicationHelper#model_to_report_data [(#2611)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2611)
- Remove dependency of two fields in Alerts [(#2601)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2601)
- Styling fix for Bootstrap switch on Tenant Quota screen [(#2583)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2583)
- ReportDataController spec - fix report_data mocking by removing too-specific contstraints [(#2582)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2582)
- Move net-ssh dependency to manageiq-gems-pending [(#2559)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2559)
- Sort reports alphabetically [(#2565)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2565)
- Allow Metering reports in views [(#2553)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2553)
- Add a new tab in Settings for customizing the help menu items [(#2537)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2537)
- Add fallback hostname form input fields for Nuage Network Provider [(#2531)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2531)
- Add additional playbook automate method parameters [(#2527)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2527)
- SmartState Docker Creds for AWS [(#2525)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2525)
- Generic Object Definitions with Treeview and Custom Button Group CRUD [(#2524)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2524)
- Removed old dialog buttons [(#2523)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2523)
- Move tagging-related tabs into subtabs on the Settings/Region screen [(#2522)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2522)
- clear user name and password on failed login attempt. [(#2514)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2514)
- v2v: Extend 'VM Transform' dialog to select VMs by tag [(#2501)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2501)
- Add cloud volume disk types to rate editor [(#2496)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2496)
- User Sync for OpenStack Cloud Provider [(#2495)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2495)
- Allow the type of controller to be passed in when adding a disk to a Vm ( VMWare ) [(#2494)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2494)
- Always send params to operations [(#2484)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2484)
- For Automate expression methods include ids [(#2475)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2475)
- Support network manager [(#2469)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2469)
- Enable MW Compliance and Control policies [(#2436)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2436)
- Show authentication status in middleware provider summary page [(#2400)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2400)
- Setup data for modal component [(#2327)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2327)
- Translating availabilities/status for Domains/Servers/Deploys [(#2323)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2323)
- Add timeline to physical server [(#2272)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2272)
- Update pre_prov view to support Volumes and Snapshots [(#2253)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2253)
- Use approval workflow for instance resize operation [(#2241)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2241)
- Add search to Services list view [(#2225)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2225)
- Introduce UI for Nuage events [(#2186)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2186)
- Replace all dialog logic with dialogUser from ui-components repository [(#2067)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2067)
- Adds error on dialog field association circular reference catch [(#2056)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2056)
- Convert Dropdown menu to component [(#2009)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2009)
- Add vm security group operations [(#1997)](https://github.com/ManageIQ/manageiq-ui-classic/pull/1997)
- UI for create and delete flavors [(#1818)](https://github.com/ManageIQ/manageiq-ui-classic/pull/1818)
- Add the ability to edit options settings for providers [(#1652)](https://github.com/ManageIQ/manageiq-ui-classic/pull/1652)
- When available use Mistral workflows to scale stacks [(#1533)](https://github.com/ManageIQ/manageiq-ui-classic/pull/1533)
- Use the new powerstate icons in treeview for VMs [(#4616)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4616)
- Put background under archived/orphaned tree node icons in VMs [(#4711)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4711)
- Add multiple select for cloud tenants when creating a flavor [(#4469)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4469)
- bower to npm: patternfly-timeline (@pf3/timeline) [(#4690)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4690)
- bower to npm: manageiq-ui-components [(#4694)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4694)
- Update i18n catalog for hammer [(#4729)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4729)
- Adding back a Tag as a filter to the PhysicalInfra topology [(#4743)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4743)
- Allow selecting an optional volume type when creating an Openstack cloud volume [(#4536)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4536)
- Add physical switches to the Physical Server page Relationships table [(#4811)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4811)
### Changed
- Change @edit[:new][:timer_typ] to @edit[:new][:timer].typ [(#3870)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3870)
- Change fa-cog to pficon-settings in VmdbDatabaseSettingDecorator [(#3863)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3863)
### Fixed
- Fix CatalogItem tree_select() [(#5096)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5096)
- Fix multi-target Set Ownership [(#5064)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5064)
- Add missing single_quad definitions for ansible-related entities [(#5051)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5051)
- Fix CatalogItem tree_select() [(#5030)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5030)
- Fix failing creating new Alert in Control > Explorer [(#5056)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5056)
- Use the uib-tab parameter for switching tabs on the tasks screen [(#5054)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5054)
- Do not try to display icon as image on Monitoring -> Alerts cards [(#5059)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5059)
- Use widget's title in flash messages [(#5047)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5047)
- Fix regression in perpage_key for GTL types [(#5036)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5036)
- Add top row information into the storage manager quadicons [(#4987)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4987)
- TenantComponent - fix setting default based on ancestry [(#5031)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5031)
- filter security group list based on provider [(#5013)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5013)
- Service catalog icon fix [(#5017)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5017)
- Allow apostrophes in custom button names [(#5010)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5010)
- Show widget's title as page title when editing widget [(#5005)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5005)
- When redirecting to a specific storage, RBAC check storage_show [(#5004)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5004)
- Reset `exp_tag` key when discard button is pressed. [(#5000)](https://github.com/ManageIQ/manageiq-ui-classic/pull/5000)
- Use fonticons for orphaned/retired machine state instead of text [(#4701)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4701)
- Fixed code to get tests to pass [(#4708)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4708)
- Fix the view details link on notifications that were retrieved via API [(#4692)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4692)
- Fix adding a new Service Catalog Item [(#4681)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4681)
- Use fa-archive as an icon indicating archived machine state [(#4678)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4678)
- Fixed to show 0 Provider in aggregate status card [(#4675)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4675)
- Display Provider dropdown while creating Orchestration Catalog Item [(#4668)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4668)
- Add React textual summary for PXE images [(#4662)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4662)
- Fixed some inconsistencies on provider dashboards. [(#4659)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4659)
- Do not show tooltip on listicons in GTLs when they're not clickable [(#4653)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4653)
- Don't use string math in right cell text [(#4652)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4652)
- Do not invoke view details callback on notifications without links [(#4651)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4651)
- Make filters saved in Templates & Images screen displayed in accordion [(#4649)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4649)
- Fixing Physical Network Port page [(#4647)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4647)
- Enable selectpicker on all dropdowns when editing a custom button [(#4646)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4646)
- Fix applying filter from Advanced Search in My Services [(#4645)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4645)
- Fix ems_cloud description textual summary [(#4638)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4638)
- Worker Settings: save memory threshold as an integer [(#4633)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4633)
- Custom Buttons with expressions are only visible on summary screen [(#4629)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4629)
- Fix toolbar buttons for Hosts displayed thru Host Aggregate's details page [(#4603)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4603)
- Fixed Schedules accordion swapping logic. [(#4621)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4621)
- Alerts - fix bug when severity null [(#4614)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4614)
- Login with Service Unavailable - show a flash message instead of generic error popup [(#4606)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4606)
- Disable volume backup create and restore button when not supported [(#4605)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4605)
- Update open_nodes when creating new element [(#4590)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4590)
- Fix error flash messages when creating tasks [(#4589)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4589)
- aggregate_status_card - fix i18n typo [(#4584)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4584)
- Fix missing flash_msg_div in ops/settings/zone_form [(#4583)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4583)
- Fix typo cvsfs -> csvfs in storage decorator [(#4582)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4582)
- Fix creation of internal rss widget [(#4577)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4577)
- Enable 'Paste' button only if the copied and selected target class are the same [(#4575)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4575)
- Fix error while creating Catalog Item of Ansible Playbook type [(#4574)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4574)
- Fix duplicate in tree after class deletion in miq_ae_class_controller [(#4572)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4572)
- Handle Alerts with no resources [(#4568)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4568)
- RSS Widget details: render rss feed title rather thank cryptic name [(#4566)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4566)
- Lazy load StorageManagers upon volume creation [(#4549)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4549)
- Use device_name for cdrom reconfiguration request [(#4548)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4548)
- Ensure that the webkit scrollbars are applied to About modal only [(#4546)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4546)
- Fix incorrect title while displaying Datastore details page [(#4529)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4529)
- Fix display_none typo [(#4540)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4540)
- Fixed missing threshold values from worker options. [(#4534)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4534)
- Fix mislabeled Description field on the EmsCloud summary view [(#4532)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4532)
- Flash messages are no longer stored in redirection parameters [(#4531)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4531)
- Fixed console warning method in fetch. [(#4530)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4530)
- Fix basic search for Datastores [(#4528)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4528)
- Fix focus of text field changes 1 or 2 seconds after host edit page is loaded [(#4527)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4527)
- Added HTTP Proxy info on RHN screen [(#4525)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4525)
- Use fonticon+background for powerstate icons in textual summaries [(#4524)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4524)
- Add option Date Only for chargeback grouping [(#4523)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4523)
- Set open_url to be false by default [(#4521)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4521)
- Unify grouping option date and vm in chargeback filter tab [(#4517)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4517)
- There is no need to check for tab title uniqueness for default dashboard [(#4515)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4515)
- Enable 'Paste' button if the coppied data are in the session [(#4513)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4513)
- Fix physical server provision page [(#4511)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4511)
- Fix enabled Save button while viewing Chargeback Rate Assignments [(#4508)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4508)
- Respect days parameter when listing timeline events [(#4504)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4504)
- Set the href for notifications emitted through WS the same as in API [(#4493)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4493)
- Fixed to use bootstrap select event instead of UJS observer [(#4488)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4488)
- use request_admin_user [(#4487)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4487)
- Worflow Templates do not have job_plays and raw_stdout_via_worker [(#4486)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4486)
- Move webmks console button to instance operations button mixin [(#4481)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4481)
- Display the correct quadicon for ReFS and StorageFileShare datastores [(#4472)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4472)
- Do not rely on decorators when displaying top-level policy folders [(#4471)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4471)
- Fix rendering of child orchestration stacks [(#4464)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4464)
- Add check if found item is defined for is_displayed action on GTL [(#4433)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4433)
- Support new filtering options on Topology page [(#4396)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4396)
- Reload the automation manager trees on provider updates [(#4386)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4386)
- Fix open_url with dialog [(#4334)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4334)
- Prevent double submit in Dialog Editor [(#4330)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4330)
- Make toolbar buttons work when viewing Instances [(#4301)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4301)
- Fix displaying multiple Catalogs with the same name in the dropdown while creating a Catalog Item [(#4278)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4278)
- Changes to AnsibleTowerJobTemplateDialogService to support both job and workflow template. [(#4157)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4157)
- Fix returning wrong template class while provisioning VMs [(#4136)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4136)
- RHSM form - use observe queue for submit [(#3191)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3191)
- Fix Physical Server provision button [(#4454)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4454)
- Don't run set_global_session_data() for csp_report() [(#4450)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4450)
- Use :ui attribute in human_attribute_name() [(#4449)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4449)
- Fixed to pass in correct class for Template summary screen pdf download [(#4445)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4445)
- Fix Object Attribute Type dropdown [(#4443)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4443)
- Correctly render orchestration template's name [(#4439)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4439)
- Fix Physical Server provision page [(#4431)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4431)
- Show saved tag and label in chargeback assigments [(#4428)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4428)
- Reword Get Roles to Get Groups from Home Forest. [(#4425)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4425)
- Fixed format of Disk size for a VM [(#4424)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4424)
- Use public interface for registering react components. [(#4422)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4422)
- Hide tasks from the notification drawer [(#4421)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4421)
- TextualMultilabel: fix: s/values/rows. [(#4420)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4420)
- Support all service types for dialog buttons [(#4418)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4418)
- restore dashboard background color [(#4417)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4417)
- Do not store cockpit_redirect when remembering tabs on dashboard [(#4415)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4415)
- Fixed Templates drop down in catalog item editor [(#4413)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4413)
- Fix duplicate DOM id in Settings Zone and Server [(#4405)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4405)
- Topology screens - fix parseUrl to deal with hash router [(#4403)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4403)
- Add long_description field into Ansible Playbook catalog item form [(#4402)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4402)
- Don't render table header for empty automate domain and namespace [(#4401)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4401)
- Fix parent_id being a number not string in JS [(#4399)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4399)
- Redux - fix store.dispatch not being a function [(#4398)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4398)
- ansible-raw-stdout: parse task id as string not number [(#4397)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4397)
- Service Dialog: Apply gettext on initial values [(#4395)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4395)
- Dialog sample screen: apply selectpicker class to dropdown select [(#4394)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4394)
- Add ems type as argument for generating url [(#4393)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4393)
- Fix unresponsive Save button while editing VM [(#4389)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4389)
- Adding some required config to charts-mixin [(#4381)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4381)
- Redux - use redux instead of ngRedux [(#4380)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4380)
- Partial treeView reloading [(#4379)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4379)
- Fix text truncation issue on tags import screen [(#4378)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4378)
- Fix visibility of toolbar buttons [(#4364)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4364)
- Adding connected physical servers to physical switches page [(#4356)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4356)
- Add ability to rename VMs [(#4351)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4351)
- Add Physical Chassis nodes to Physical Infra Topology [(#4349)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4349)
- Add placeholder for volume size [(#3928)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3928)
- Convert namespace form [(#3919)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3919)
- Ensure Look up groups checkbox is not shown when OIDC is enabled. [(#4373)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4373)
- Corrected typo in miqSparkle function name [(#4370)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4370)
- GO Edit Screen: Add buttonText to file input button [(#4369)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4369)
- Add missing gettext into cloudVolumeFormController [(#4368)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4368)
- Add missing title for cloud_topology @layout [(#4367)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4367)
- Fix indentation in prov_iso_img_grid [(#4366)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4366)
- New Group Screen: use variable for placeholder texts [(#4365)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4365)
- Display the correct quadicon for NTFS datastore entities [(#4362)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4362)
- Added helper that clears all unused react components from virtual DOM. [(#4361)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4361)
- Fix sprintf with gettext in genericObjectTableComponent [(#4360)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4360)
- Add missing gettext into patternfly charts [(#4359)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4359)
- Fix capitalization: Floating Ip -> Floating IP [(#4350)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4350)
- Fix the health_state quadicon [(#4348)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4348)
- Fixing link for physical switches ports [(#4346)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4346)
- Add missing gettext into angular controllers [(#4345)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4345)
- Include main.scss through the asset pipeline path resolver [(#4344)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4344)
- Fix path to jQuery in application.js [(#4343)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4343)
- Remove Redux environment warning in production [(#4341)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4341)
- Fix find in expression editor [(#4338)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4338)
- Remove VM Transform buttons [(#4336)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4336)
- Fixing display of subcollections of physical components [(#4335)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4335)
- Fix a wrong paramenter being inject into infra dashboard [(#4333)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4333)
- Fix path to jQuery when loading it separately for remote consoles [(#4329)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4329)
- Fixed rbac feature id being passed in to assert_privileges method [(#4328)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4328)
- Remove the unnecessary view_to_hash call from Foreman controller [(#4327)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4327)
- Hide Driving Event field for Containers. [(#4324)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4324)
- Fix custom button without dialog [(#4321)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4321)
- Added configuration to enable redux routing for react components. [(#4320)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4320)
- Pie charts weren't retrieving the correct data [(#4319)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4319)
- Fix link in textual_region [(#4317)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4317)
- Make sure that react helper always closes the div tag [(#4314)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4314)
- Changing Host icons [(#4309)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4309)
- Add missing single_quad definition for ansible tower provider [(#4307)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4307)
- Service AnsibleTower and EmbeddedAnsible UI parity [(#4299)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4299)
- Fix search text on non gtl screens [(#4287)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4287)
- Textual summary fixes [(#4111)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4111)
- Containers Provider Dashboard conversion to use Angular/PF components [(#2499)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2499)
- EmsCloud dashboard [(#3427)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3427)
- Fix asset pipeline for remote consoles when loading jquery [(#4286)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4286)
- Don't show refresh button on Request page [(#4280)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4280)
- Add security protocol to physical infra form data [(#4272)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4272)
- Fixed visible memory switch while adding snapshot for turned off vm. [(#4270)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4270)
- Add single_quad definition for ansible tower jobs [(#4265)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4265)
- Fixed to make Reload button visible on list view. [(#4257)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4257)
- Adjusting the grid definitions for physical infra provider dashboard [(#4250)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4250)
- Use safer way when filter charts [(#4248)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4248)
- Replaced fileicons with fonticons in alerts. [(#4247)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4247)
- Passing capacity hash to values broke PV screen [(#4245)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4245)
- Fix Manage policies and Check compliance buttons for Container Images and others [(#4206)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4206)
- NOR to use right values [(#4186)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4186)
- Pass in id of selected record correctly. [(#4242)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4242)
- Fixed variable name [(#4240)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4240)
- Don't create create schedule if already created [(#4234)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4234)
- Fix the EMS fallback decorator's single_quad definition [(#4233)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4233)
- Show and allow the server name to be saved in the settings/server screen [(#4232)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4232)
- Add single_quad definition for embedded ansible credentials [(#4228)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4228)
- Fix nonexistent pficon-error-octagon [(#4227)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4227)
- Add guidance text for new <<reset>> magic word [(#4224)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4224)
- Fix toolbar switching for Buttons accord and Add a new Button action [(#4223)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4223)
- Don't allow user to create a repository if he has no rights to EA provider [(#4214)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4214)
- Add single_quad definition into the SwitchDecorator [(#4210)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4210)
- Fix Generic Objects default menu definition [(#4207)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4207)
- webpack:paths - always load inflectors [(#4205)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4205)
- Reprioritize icons and images for GTLs prefer images first [(#4198)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4198)
- Fix issues in Reconfigure/Resize [(#4182)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4182)
- Change the paste image with a fonticon in custom button forms [(#4172)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4172)
- Use fonticons for relative/specific date selection in exp editor [(#4171)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4171)
- Fixing showtype error [(#4164)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4164)
- Don't allow network manager edit if the network manager doesn't support it [(#4162)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4162)
- Fixes confirmation messages for Widgets Add/Edit/Cancel actions. [(#4154)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4154)
- Fix resize approval to work for editing requests [(#2598)](https://github.com/ManageIQ/manageiq-ui-classic/pull/2598)
- Fix Datastore decorator format string [(#4159)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4159)
- Fixing textual summary payload mount for multilabel components [(#4148)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4148)
- Use decorators for icons/images in the compressed compare view [(#4146)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4146)
- Display cloud subnets in the top-right quadrant of network providers [(#4134)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4134)
- Added missing tooltips for some quadicon quadrants [(#4133)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4133)
- Use fonticons for embedded items in automate and catalogs [(#4129)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4129)
- Add the missing powering_down quadrant machine state [(#4128)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4128)
- Fix error on default filters page [(#4127)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4127)
- Add Gluster vendor svg [(#4125)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4125)
- Remove unnecessary ref to 16/blue-circle.png from report timelines [(#4120)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4120)
- Use fonticons for sorting items on the provisioning form [(#4118)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4118)
- My Settings: fixes for recent uib-tab changes [(#4116)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4116)
- Fix missing single_quad for container services [(#4110)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4110)
- Do not store cockpit popups in session [(#4109)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4109)
- Fix missing bottom-right fonticons on provider quadicons [(#4108)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4108)
- Missing icon for powering-up state [(#4101)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4101)
- Convert health state and provider status quadrant icons to fonticons [(#4098)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4098)
- Use fonticon for unknown container registries in textual summaries [(#4094)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4094)
- Use fonticon for the warning in catalog edit provision confirm modal [(#4093)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4093)
- Replace q.png with vendor-redhat.svg in the automate simulation tree [(#4092)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4092)
- Remove Discovered IP Address field from Physical Infra Provider [(#4091)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4091)
- Don't use generic object definition fileicon if no picture present [(#4089)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4089)
- Fix menu selection when on physical infra topology view [(#4083)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4083)
- Fix Request Info for Catalog Items [(#4082)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4082)
- Make sure @edit[:current].config[:server][:zone] is set [(#4072)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4072)
- Adding Physical Switches to Physical Infra topology page [(#4068)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4068)
- Add single_quad definition for configuration profiles [(#4067)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4067)
- Pull out health_state from physical infra decorators to the helper [(#4054)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4054)
- Prefer fonticon for resource pool if it's not vapp [(#4048)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4048)
- Add missing single_quad definition for ConfiguredSystemDecorator [(#4046)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4046)
- fix deprecated passing class to AR notification [(#4044)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4044)
- Do not use generic object fileicon if no picture specified [(#4040)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4040)
- Display providers' suspended status in their quadicon [(#4022)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4022)
- Fixing Provider PhysicalSwitches page summary show [(#3954)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3954)
- Add Redfish provider creation dialog [(#3912)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3912)
- Replaced ror form with react form component [(#3856)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3856)
- Add a dashboard view for a physical infra provider [(#3806)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3806)
- Fix parent ems links in textual summaries. [(#4031)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4031)
- Add a separate decorator for Network Providers [(#4025)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4025)
- Fix wrongly displayed policy shield on container & cloud provider quads [(#4021)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4021)
- Add the VMWare Virtual Ethernet Card model type to the VM summary [(#4016)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4016)
- Display number of containers on the top right quad of container prov [(#4015)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4015)
- Fix textual summary display in tenants. [(#4009)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4009)
- Fix typo in earlier commit [(#4006)](https://github.com/ManageIQ/manageiq-ui-classic/pull/4006)
- Setting different colors for physical infra components on topology view [(#3999)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3999)
- Restrict quadicon class demodulization for Physical records only [(#3980)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3980)
- http - send cookie [(#3978)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3978)
- Fix Save button which wasn't responding while editing Chargeback Rate [(#3974)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3974)
- Do not override kubevirt token with default token [(#3971)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3971)
- Void serverl url input field when switching form to Sat6 [(#3942)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3942)
- Display browser local time in retirement form [(#3826)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3826)
- Fix displaying services after applying a filter (2) [(#3654)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3654)
- Hide "Hide Deprecated" checkbox and remove "Deprecated" column when provisioning infra VM [(#3615)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3615)
- Create a rack list and rack page [(#3503)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3503)
- Make view selector of All Generic Objects page work [(#3423)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3423)
- TextualSummaries: part of client side rendering with React. [(#3420)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3420)
- Allow downloading of AuthKeyPair private keys if they are available [(#3957)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3957)
- Remove :match_via_decendants for ConfiguredSystem::ConfiguredSystem [(#3952)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3952)
- Update switch ports relationship [(#3949)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3949)
- React helper [(#3943)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3943)
- Render the correct toolbar for the infra networking switches [(#3933)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3933)
- Add backup create/restore to volume list actions [(#3927)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3927)
- Consistency on toolbar buttons for physical server list page [(#3923)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3923)
- Add missing gettext into MiqAeCustomizationController [(#3914)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3914)
- Don't require form changes in order to submit backup restore [(#3911)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3911)
- No need to find tooltip column for charts where tooltip label not used. [(#3908)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3908)
- Dashboard services - add missing rbac [(#3901)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3901)
- Display what is being edited in the report menu editor [(#3900)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3900)
- Fix Ansible Tower Service Catalog new item creation [(#3896)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3896)
- Fix Dialog's API call for Datastore [(#3893)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3893)
- Disable Look up Group for Amazon Database and External with SAML [(#3881)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3881)
- Add view selector to Block/Object Storage Managers [(#3871)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3871)
- Add quad into report data API [(#3853)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3853)
- Timeprofile copy fix [(#3835)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3835)
- Fix inconstancy of flash messages for Analysis Profiles and Schedules [(#3800)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3800)
- Fix selecting ALL filter and changing it to default on Physical Infra [(#3797)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3797)
- Generalized case statement so it responds to the method change in the core [(#3607)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3607)
- Do not force exp_key to be limited to "CONTAINS" for date type fields. [(#3879)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3879)
- Fixes display of VM Retirement State label [(#3877)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3877)
- Add missing single_quad definitions for models displayed under Services [(#3875)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3875)
- Clear tag expression field when editing group tag expression [(#3866)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3866)
- Fix for certain tag categories being unable to be saved as dialog field elements [(#3865)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3865)
- Add a unique random DOM ID for each quadicon and use it in miq_bootstrap [(#3858)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3858)
- Change Service 'Order' button to blue color to look active [(#3843)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3843)
- Do not store console popups in session [(#3842)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3842)
- Disable credential / repository form when embedded ansible is unavailable [(#3840)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3840)
- Rebuild provider foreman tree after editing a provider [(#3834)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3834)
- Timeline menu [(#3827)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3827)
- Fixed disabled report editor treeview styling regression [(#3823)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3823)
- Apply gettext on catalog types & subtypes [(#3814)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3814)
- Fix title in Config Settings page to match the accordion [(#3819)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3819)
- Fixes Service Catalog Item Custom subtype display [(#3809)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3809)
- Added setting of `@ems` to fix the nilclass error. [(#3805)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3805)
- Fix using old options for calculating [(#3788)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3788)
- Clear the request field when switching the button type to 'Default' [(#3787)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3787)
- Send the tree data for explorer trees as an object instead of JSON [(#3785)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3785)
- Add custom attributes to playbook summary [(#3783)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3783)
- save/render flash message after Network Router delete is initiated. [(#3775)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3775)
- Fix enabling/disabling Add button when creating new user [(#3771)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3771)
- Use fonticons with color in quadicons' powerstate quadrants [(#3770)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3770)
- Mark CloudSubnet.cidr as required [(#3769)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3769)
- Fix generic object show in services [(#3768)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3768)
- Fix user edit [(#3767)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3767)
- Fix bugs on set ownership screen [(#3759)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3759)
- Meaningful openscap report filenames [(#3758)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3758)
- Remove 'Include C&U metrics' option for Metering Reports [(#3751)](https://github.com/ManageIQ/manageiq-ui-classic/pull/3751)