Conversation
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
2 similar comments
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
yashikakhurana
left a comment
There was a problem hiding this comment.
Thanks @moibra05 in general looks good, I have one suggestion if you can try to target specifics id instead of body
experimenter/experimenter/nimbus_ui/templates/nimbus_experiments/results-new.html
Outdated
Show resolved
Hide resolved
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
1 similar comment
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
yashikakhurana
left a comment
There was a problem hiding this comment.
@moibra05 I know you are adding the placeholders for filters, but can you confirm these filters work I am trying on this one- https://pr13870-experimenter.preview.mozilla.cloud/nimbus/ctataru/results-new/?analysis_basis=exposures&reference_branch=treatment-a&segment=all
| {% for branch in branch_data %} | ||
| <div class="col"> | ||
| {% include "common/branch_card.html" with branch=branch %} | ||
| {% include "nimbus_experiments/results-new-fragment.html" %} |
There was a problem hiding this comment.
I believe this file results-new.html is only containing results-new-fragment right? if that is the case I dont think we need separate file for this?
There was a problem hiding this comment.
results-new.html also extends nimbus_experiments/experiment_base.html which contains other experimenter page elements such as the header and sidebar. when i make htmx get requests back to the new results page to reload content on filter changes i only want the results page content to be returned which is what results-new-fragment contains. separating these files gives me control in the exact content returned by the view depending on if the HX-Request header is provided
There was a problem hiding this comment.
also yes, filters should work and appear to be with the experiment you linked
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
1 similar comment
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
|
Preview environment has been deployed. Preview URL: https://pr13870-experimenter.preview.mozilla.cloud It may take up to 5 minutes for the environment to become available. You can monitor deployment status in Argo CD. |
yashikakhurana
left a comment
There was a problem hiding this comment.
Thank you @moibra05 I tried the filtering it is working 🎉 just having multiple cards if we can loop somehow to improve it, also one suggestion unrelated to this PR the spacing looks little bit off here, whenver you have a chance to fix it

| <div class="d-flex flex-column gap-3 w-100"> | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
| {% include "common/metric_card.html" with slug=branch.slug reference_branch=selected_reference_branch %} | ||
|
|
||
| </div> | ||
| </div> | ||
| {% endfor %} |
There was a problem hiding this comment.
I wish we can find better solution for this

Because
This commit
Fixes #13720