Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #164 from kawshar/issue-149
Browse files Browse the repository at this point in the history
Issue 149, User field selection problem.
  • Loading branch information
marcodings authored Dec 18, 2019
2 parents 17f099e + 43cc9ae commit b7eef56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_users/tmpl/users/modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<div class="j-alert-info-wrap"><?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?></div>
</div>
<?php else : ?>
<table class="table j-striped-table">
<table class="table j-striped-table mt-4">
<caption id="captionTable" class="sr-only">
<?php echo Text::_('COM_USERS_USERS_TABLE_CAPTION'); ?>, <?php echo Text::_('JGLOBAL_SORTED_BY'); ?>
</caption>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
connectedCallback() {
// Set up elements
this.modal = this.querySelector(this.modalClass);
this.modalBody = this.querySelector('section');
this.input = this.querySelector(this.inputId);
this.inputName = this.querySelector(this.inputNameClass);
this.buttonSelect = this.querySelector(this.buttonSelectClass);
Expand Down Expand Up @@ -100,6 +99,7 @@
// Reconstruct the iframe

this.modal.open();
this.modalBody = this.querySelector(`${this.modalClass} section`);

this.iframeEl = this.modalBody.querySelector('iframe');

Expand Down

0 comments on commit b7eef56

Please sign in to comment.