key_name and key_save fields in Stack Launch don't have tooltips

Bug #1304208 reported by Ami Jeain
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
OpenStack Dashboard (Horizon)
Invalid
Wishlist
Nikunj Aggarwal

Bug Description

the 2 last fields in the Stack launch screen (key_name and key_save) are missing the tooltip, like the other 3 top fields.
Placing the mouse inside these 2 fields should show the black tooltip

Ami Jeain (ajeain)
summary: - key_name and key_save fields don't have tooltips
+ key_name and key_save fields in Stack Launch don't have tooltips
Revision history for this message
Ritesh Paiboina (rsritesh) wrote :

In horizon dashboard, few fields have tool tips and few fields does not have tool tips not only in stack but also in others pannels of dasboard.

It is inconssitent as far in case of tool tips providing information.

It should be added to wishlist.

Changed in horizon:
importance: Undecided → Wishlist
Changed in horizon:
assignee: nobody → Nikunj Aggarwal (nikunj2512)
Revision history for this message
Nikunj Aggarwal (nikunj2512) wrote :

Hi Ami Jeain,

Can you post the heat template you are using??

Also i got it why the create stack page is not showing tooltip for the two fields You mentioned. It is because when you define additional fields in Heat template and don't add the "Description" key while defined the new filed, the horizon doesn't shows the tooltip.

take a look at this template:
heat_template_version: 2013-05-23
description: >
  A single stack with a keypair.

parameters:
  key_name:
    type: string
    description: Name of an existing key pair to use for the server
    default: heat_key3
  key_save:
    type: string
    description: Name of an existing key pair to use for the server
    default: false

resources:
  KeyPair:
    type: OS::Nova::KeyPair
    properties:
      name: { get_param: key_name }
      save_private_key: { get_param: key_save }

outputs:
  PublicKey:
    value: { get_attr: [KeyPair, public_key] }
  PrivateKey:
    value: { get_attr: [KeyPair, private_key] }

When you add this template it will show the tooltip for those fields defined in the template.

Revision history for this message
Nikunj Aggarwal (nikunj2512) wrote :

And i think so this not a bug.

Changed in horizon:
status: New → Invalid
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.