Cannot delete alarm accidentally created with name"?"

Ignition Platform Version 8.1.42...

I'm writing a program to import alarm tag info from a WW CSV. During one of the testing loops, I accidentally set the alarm name to "?". Now the alarm cannot be deleted, renamed, or modified in any way. Neither can the host tag or any of its' ancestors be deleted. Is there a fix for this?
image

Can you export the host tag as JSON?

Yep.

{
  "valueSource": "opc",
  "opcItemPath": "ns\u003d1;s\u003d[Drums_1_PLC]Global.Alarms.Cur.Lance.Lance[1].Mot.LimTopAndBotSw",
  "dataType": "Boolean",
  "alarms": [
    {
      "setpointA": 1.0,
      "mode": "Equality",
      "name": "AL_L1_MOT_LimTopAndBotSw",
      "label": "Lance A Top \u0026 Bottom Limit Switches Actuated Simultaneously"
    },
    {
      "setpointA": 1.0,
      "mode": "Equality",
      "name": "?",
      "label": "Lance A Top \u0026 Bottom Limit Switches Actuated Simultaneously"
    }
  ],
  "name": "LimTopAndBotSw",
  "tagType": "AtomicTag",
  "opcServer": "Ignition OPC UA Server"
}

Edit that in a text editor so that the "?" is what ever name you intended, and then paste it back over the host tag.

Or just remove that section (everything from the "," to the "]". Including the "," but not the "]").

Aha! That worked after I performed the paste at the host gateway and then used the tag editor to delete the offensive alarm.
Thanks!

Update
It turns out that the actual problem was that I was trying to delete the alarm at a remote gateway. Further confusing the matter was that there appeared to be no error dialog when in fact the dialog box was popping up somewhere off of all of my monitors. Thanks for the help though. I learned something!