We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We got a bug report at open chat room on HipChat. Looks something wrong around the algorithm to insert a "selected" attribute for a select tag.
Wakame-vdc 16.1 で社内にプライベートクラウド環境を作ってみてますが、WebUI の「グループ選択」でグループを変更しても常に「グループ選択」の表示はプライマリアカウントが表示されるという現象に遭遇しています。 ちなみに右側のコンテンツは選択したアカウントのコンテンツが表示されます。これにより以下の状態となります。 グループ選択でアカウントA(プライマリアカウント)からアカウントBに切り替え、コンテンツをアカウントBのものに変更 コンテンツをアカウントAのものに変更しようとするも、グループ選択は既にアカウントAになっているため、切り替えができない ログオフして再度ログインしてみるも、グループ選択はアカウントAでコンテンツはアカウントBというアベコベ状態が継続 インストールしているパッケージは wakame-vdc-webui-vmapp-config-16.1-1.el6.noarch です。 修正すべきコードがどれかはまだ見つけてませんが、chrome だと webui の html の<div id="account"> の配下の <select id="accounts_acount_uuid" name="acccounts[account_uuid]"> 内の選択されている要素に selected を追加してやれば、この現象から出っすることができます。
Wakame-vdc
16.1 で社内にプライベートクラウド環境を作ってみてますが、WebUI の「グループ選択」でグループを変更しても常に「グループ選択」の表示はプライマリアカウントが表示されるという現象に遭遇しています。 ちなみに右側のコンテンツは選択したアカウントのコンテンツが表示されます。これにより以下の状態となります。
<div id="account">
<select id="accounts_acount_uuid" name="acccounts[account_uuid]">
selected
The text was updated successfully, but these errors were encountered:
根本的な解決方法ではないが、以下の {:selected => primary_account_id} を {:selected => primary_account_id.gsub(/^a-/, '')} に書き換えれば、この問題は回避できる。
https://github.com/axsh/wakame-vdc/blob/develop/frontend/dcmgr_gui/app/views/layouts/_sidemenu.html.erb#L4
Sorry, something went wrong.
No branches or pull requests
We got a bug report at open chat room on HipChat.
Looks something wrong around the algorithm to insert a "selected" attribute for a select tag.
The text was updated successfully, but these errors were encountered: