{
   "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
   "id": "544340",
   "self": "https://bugs.mojang.com/rest/api/2/issue/544340",
   "key": "BDS-18805",
   "fields": {
      "issuetype": "1",
      "project": "11700",
      "fixVersions": [],
      "resolution": "4",
      "customfield_10500": {
         "self": "https://bugs.mojang.com/rest/api/2/customFieldOption/10300",
         "value": "Unconfirmed",
         "id": "10300",
         "disabled": false
      },
      "customfield_12800": null,
      "customfield_12602": [],
      "customfield_12601": null,
      "customfield_12604": null,
      "customfield_12603": null,
      "customfield_12606": null,
      "customfield_12605": null,
      "customfield_12608": null,
      "resolutiondate": "2024-01-18T20:00:01.000+0200",
      "customfield_12607": null,
      "customfield_12609": null,
      "workratio": -1,
      "lastViewed": null,
      "watches": {
         "self": "https://bugs.mojang.com/rest/api/2/issue/BDS-18805/watchers",
         "watchCount": 1,
         "isWatching": false
      },
      "created": "2023-10-17T16:57:58.000+0300",
      "customfield_12000": null,
      "customfield_12201": null,
      "customfield_12600": null,
      "labels": [],
      "customfield_11700": "{}",
      "versions": [
         "21608"
      ],
      "issuelinks": [],
      "assignee": null,
      "updated": "2024-01-18T20:00:01.000+0200",
      "status": "5",
      "description": "import React, \\{ useState } from \"react\";\r\n\r\nimport \\{ StyleSheet, Text, View } from \"react-native\";\r\n\r\n\u00a0\r\n\r\nconst App = () => {\r\n\r\n\u00a0 const [armorStand, setArmorStand] = useState(null);\r\n\r\n\u00a0\r\n\r\n\u00a0 const handleArmorStandClick = () => {\r\n\r\n\u00a0 \u00a0 if (!armorStand) {\r\n\r\n\u00a0 \u00a0 \u00a0 const armorStand = new ArmorStand();\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setLocation(0, 0, 0);\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setRotation(0, 0, 0);\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setCustomName(\"\u0411\u0440\u043e\u043d\u0435\u043d\u043e\u0441\u0435\u0446\u044c\");\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setHealth(200);\r\n\r\n\u00a0\r\n\r\n\u00a0 \u00a0 \u00a0 // \u0414\u043e\u0434\u0430\u0442\u0438 \u0431\u0440\u043e\u043d\u044e\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setItemInHand(0, new ItemStack(Material.IRON_BARDING));\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setItemInOffHand(0, new ItemStack(Material.IRON_BARDING));\r\n\r\n\u00a0\r\n\r\n\u00a0 \u00a0 \u00a0 // \u0414\u043e\u0434\u0430\u0442\u0438 \u0449\u0438\u0442\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.setItemInHand(1, new ItemStack(Material.SHIELD));\r\n\r\n\u00a0\r\n\r\n\u00a0 \u00a0 \u00a0 setArmorStand(armorStand);\r\n\r\n\u00a0 \u00a0 } else {\r\n\r\n\u00a0 \u00a0 \u00a0 armorStand.destroy();\r\n\r\n\u00a0 \u00a0 \u00a0 setArmorStand(null);\r\n\r\n\u00a0 \u00a0 }\r\n\r\n\u00a0 };\r\n\r\n\u00a0\r\n\r\n\u00a0 return (\r\n\r\n\u00a0 \u00a0 <View style=\\{styles.container}>\r\n\r\n\u00a0 \u00a0 \u00a0 <Text style=\\{styles.title}>\u0411\u0440\u043e\u043d\u0435\u043d\u043e\u0441\u0435\u0446\u044c</Text>\r\n\r\n\u00a0 \u00a0 \u00a0 {armorStand && (\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 <View style=\\{styles.armorStand}>\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <Text style=\\{styles.armorStandName}>\\{armorStand.customName}</Text>\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 </View>\r\n\r\n\u00a0 \u00a0 \u00a0 )}\r\n\r\n\u00a0 \u00a0 \u00a0 <TouchableOpacity onPress=\\{handleArmorStandClick}>\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 <Text style=\\{styles.button}>\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0431\u0440\u043e\u043d\u0435\u043d\u043e\u0441\u0435\u0446\u044c</Text>\r\n\r\n\u00a0 \u00a0 \u00a0 </TouchableOpacity>\r\n\r\n\u00a0 \u00a0 </View>\r\n\r\n\u00a0 );\r\n\r\n};\r\n\r\n\u00a0\r\n\r\nconst styles = StyleSheet.create({\r\n\r\n\u00a0 container: {\r\n\r\n\u00a0 \u00a0 flex: 1,\r\n\r\n\u00a0 \u00a0 alignItems: \"center\",\r\n\r\n\u00a0 \u00a0 justifyContent: \"center\",\r\n\r\n\u00a0 },\r\n\r\n\u00a0 title: {\r\n\r\n\u00a0 \u00a0 fontSize: 24,\r\n\r\n\u00a0 \u00a0 fontWeight: \"bold\",\r\n\r\n\u00a0 },\r\n\r\n\u00a0 armorStand: {\r\n\r\n\u00a0 \u00a0 position: \"absolute\",\r\n\r\n\u00a0 \u00a0 top: 0,\r\n\r\n\u00a0 \u00a0 left: 0,\r\n\r\n\u00a0 \u00a0 width: 1,\r\n\r\n\u00a0 \u00a0 height: 1,\r\n\r\n\u00a0 },\r\n\r\n\u00a0 armorStandName: {\r\n\r\n\u00a0 \u00a0 fontSize: 16,\r\n\r\n\u00a0 \u00a0 color: \"white\",\r\n\r\n\u00a0 },\r\n\r\n\u00a0 button: {\r\n\r\n\u00a0 \u00a0 padding: 10,\r\n\r\n\u00a0 \u00a0 backgroun\r\n\r\ndColor: \"blue\",\r\n\r\n\u00a0 \u00a0 borderRadius: 5,\r\n\r\n\u00a0 },\r\n\r\n});\r\n\r\n\u00a0\r\n\r\nexport default App;",
      "customfield_11100": 0.0,
      "customfield_11300": null,
      "customfield_11500": null,
      "customfield_12503": null,
      "customfield_12700": "[Briefly describe the bug here]\r\n\r\n*Steps to Reproduce:*\r\n# [Step 1]\r\n# [Step 2]\r\n# [Step 3]\r\n\r\n*Observed Results:*\r\n[Describe what happens]\r\n\r\n*Expected Results:*\r\n[Describe what should happen]\r\n\r\n*Screenshots/Videos attached:* [please attach an image or short video]\r\n\r\n*Notes:*",
      "customfield_12502": null,
      "security": {
         "self": "https://bugs.mojang.com/rest/api/2/securitylevel/10318",
         "id": "10318",
         "description": "Private, viewable only by volunteers and up.",
         "name": "Minecraft - Private"
      },
      "customfield_12504": null,
      "attachment": [
         "552593"
      ],
      "summary": "armadillo",
      "creator": "JIRAUSER765178",
      "reporter": "JIRAUSER765178",
      "customfield_10002": null,
      "customfield_12501": null,
      "customfield_12500": null,
      "customfield_11601": null,
      "customfield_11600": "0|i2f9pb:",
      "environment": "React Native ",
      "customfield_11801": null,
      "customfield_11800": null,
      "customfield_11602": null,
      "customfield_11802": null,
      "comment": {
         "comments": [
            {
               "self": "https://bugs.mojang.com/rest/api/2/issue/544340/comment/1285670",
               "id": "1285670",
               "author": "JIRAUSER648376",
               "body": "*Thank you for your report!*\r\nHowever, this issue has been temporarily closed as\u00a0*{color:#ff5722}Awaiting Response{color}*\r\n\r\nCan you please describe your issue in more detail? Recording of this issue occuring would be very helpful. If it exceeds file size limit you can use OneDrive or similar file hosting service and share link. \r\n\r\nTo make your bug report as effective as possible, please try and include the following steps to reproduce the problem:\r\n{quote}*Steps to Reproduce:*\r\n1.\r\n2.\r\n3.\r\n\r\n*Observed Results:*\r\n_(Briefly describe what happens)_\r\n\r\n*Expected Results:*\r\n_(Briefly describe what should happen)_\r\n{quote}\r\nIf your ticket does not look like the example given\u00a0[here|https://aka.ms/MCBugTrackerHelp], then it's likely to be closed as incomplete.\r\n\r\n\u00a0*Quick Links*:\r\n\ud83d\udcd3 [Bug Tracker Guidelines|https://aka.ms/MCBugTrackerHelp] -- \ud83d\udce7 [Mojang Support|https://aka.ms/Minecraft-Support]\r\n\ud83d\udcd3 [Project Summary|https://bugs.mojang.com/projects/BDS/summary] -- \u270d\ufe0f [Feedback and Suggestions|https://feedback.minecraft.net/] -- \ud83d\udcd6 [BDS Wiki|https://minecraft.fandom.com/wiki/Bedrock_Dedicated_Server] -- \ud83d\udcd6 [FAQs|https://help.minecraft.net/hc/en-us/articles/360035131651-Dedicated-Servers-for-Minecraft-on-Bedrock-]",
               "updateAuthor": "JIRAUSER648376",
               "created": "2023-10-17T17:33:20.363+0300",
               "updated": "2023-10-17T17:33:20.363+0300"
            },
            {
               "self": "https://bugs.mojang.com/rest/api/2/issue/544340/comment/1300281",
               "id": "1300281",
               "author": "JIRAUSER484247",
               "body": "Cleaning up old tickets: This ticket had been set to 'Awaiting Response', but has not received a response from the reporter (~3 months+) so is being closed as {_}Incomplete{_}. If you feel this is still a valid issue then please comment, or create a new ticket following the [Issue Guidelines|https://help.minecraft.net/hc/en-us/articles/4408887473421] which includes steps to reproduce the problem.\r\n\r\n{*}Quick Links{*}:\r\n\ud83d\udcd3 [Issue Guidelines|https://aka.ms/MCBugTrackerHelp] \u2013 \ud83d\udcac [Mojang Support|https://help.minecraft.net/hc/en-us/requests/new] \u2013 \ud83d\udce7 [Suggestions|https://feedback.minecraft.net/] \u2013 \ud83d\udcd6 [Minecraft Wiki|http://minecraft.gamepedia.com/Minecraft_Wiki]",
               "updateAuthor": "JIRAUSER484247",
               "created": "2024-01-18T20:00:01.433+0200",
               "updated": "2024-01-18T20:00:01.433+0200"
            }
         ],
         "maxResults": 2,
         "total": 2,
         "startAt": 0
      },
      "votes": {
         "self": "https://bugs.mojang.com/rest/api/2/issue/BDS-18805/votes",
         "votes": 0,
         "hasVoted": false
      }
   },
   "changelog": {
      "startAt": 0,
      "maxResults": 3,
      "total": 3,
      "histories": [
         {
            "id": "2882449",
            "author": "JIRAUSER648376",
            "created": "2023-10-17T17:33:20.368+0300",
            "items": [
               {
                  "field": "resolution",
                  "fieldtype": "jira",
                  "from": null,
                  "fromString": null,
                  "to": "10001",
                  "toString": "Awaiting Response"
               },
               {
                  "field": "status",
                  "fieldtype": "jira",
                  "from": "1",
                  "fromString": "Open",
                  "to": "5",
                  "toString": "Resolved"
               }
            ]
         },
         {
            "id": "2925238",
            "author": "JIRAUSER484247",
            "created": "2024-01-18T19:59:55.682+0200",
            "items": [
               {
                  "field": "resolution",
                  "fieldtype": "jira",
                  "from": "10001",
                  "fromString": "Awaiting Response",
                  "to": null,
                  "toString": null
               },
               {
                  "field": "status",
                  "fieldtype": "jira",
                  "from": "5",
                  "fromString": "Resolved",
                  "to": "4",
                  "toString": "Reopened"
               }
            ]
         },
         {
            "id": "2925239",
            "author": "JIRAUSER484247",
            "created": "2024-01-18T20:00:01.438+0200",
            "items": [
               {
                  "field": "resolution",
                  "fieldtype": "jira",
                  "from": null,
                  "fromString": null,
                  "to": "4",
                  "toString": "Incomplete"
               },
               {
                  "field": "status",
                  "fieldtype": "jira",
                  "from": "4",
                  "fromString": "Reopened",
                  "to": "5",
                  "toString": "Resolved"
               }
            ]
         }
      ]
   }
}