code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/html/package-lock.json b/html/package-lock.json "dev": true }, "@sparkdesignsystem/spark-styles": { - "version": "1.0.0-beta.0", - "resolved": "https://registry.npmjs.org/@sparkdesignsystem/spark-styles/-/spark-styles-1.0.0-beta.0.tgz", - "integrity": "sha512-nJZ5JvKFmouxgbJcM70obZ9r1xUtlUqHKo9gDrK89A4MLnz...
3
diff --git a/lib/generate.js b/lib/generate.js @@ -171,9 +171,11 @@ generate.ts = generate.typescript = function (parser, exportName) { output += "// http://github.com/Hardmath123/nearley\n"; output += "function id(d:any[]):any {return d[0];}\n"; output += parser.body.join('\n'); - output += "interface NearleyGrammar {...
7
diff --git a/index.d.ts b/index.d.ts @@ -260,7 +260,7 @@ export interface Bot extends TypedEmitter<BotEvents> { updateSign: (block: Block, text: string) => void equip: ( - item: Item, + item: Item | number, destination: EquipmentDestination | null, callback?: (error?: Error) => void ) => Promise<void>
3
diff --git a/app/shared/actions/stake.js b/app/shared/actions/stake.js @@ -54,7 +54,7 @@ export function setStake(account, netAmount, cpuAmount) { }; } -export function clearSystemState() { +export function resetStakeForm() { return (dispatch: () => void) => { dispatch({ type: types.RESET_SYSTEM_STATES
10
diff --git a/src/ts4.1/index.d.ts b/src/ts4.1/index.d.ts @@ -118,7 +118,7 @@ export function Trans<N extends Namespace, K extends TFuncKey<N>, E extends Elem props: TransProps<N, K, E> ): React.ReactElement; -export function useSSR(initialI18nStore: any, initialLanguage: any): void; +export function useSSR(initialI18nS...
1
diff --git a/policykit/templates/policyadmin/login.html b/policykit/templates/policyadmin/login.html @@ -95,7 +95,7 @@ You must be an admin of the Discord to add PolicyKit to your server.<BR> <P> -<a href="https://discordapp.com/api/oauth2/authorize?client_id={{discord_client_id}}&response_type=code&redirect_uri={{serv...
0
diff --git a/src/statemanager/WfsPermalink.js b/src/statemanager/WfsPermalink.js @@ -283,7 +283,7 @@ WfsPermalinkService.prototype.issueRequest_ = function( // zoom to features const size = map.getSize(); if (size !== undefined) { - const maxZoom = zoomLevel || this.pointRecenterZoom_; + const maxZoom = zoomLevel === u...
9
diff --git a/app/src/renderer/vuex/modules/distribution.js b/app/src/renderer/vuex/modules/distribution.js @@ -73,12 +73,12 @@ export default ({ node }) => { const rewards = coinsToObject(rewardsArray) commit(`setTotalRewards`, rewards) commit(`setDistributionError`, null) + state.loaded = true } catch (error) { Sentry...
3
diff --git a/packages/table-core/src/features/RowSelection.ts b/packages/table-core/src/features/RowSelection.ts @@ -267,16 +267,16 @@ export const RowSelection: TableFeature = { // }, getIsAllRowsSelected: () => { - const preFilteredFlatRows = table.getPreFilteredRowModel().flatRows + const preGroupedFlatRows = table....
1
diff --git a/app/hglib.html b/app/hglib.html </script> <script> console.log('hey'); - usedServer = "localhost:8000"; + let remoteServer = "52.45.229.11"; + usedServer = remoteServer; var viewConfig = { 'editable': true, zoomFixed: false, { 'uid': 'hm1', 'server': usedServer , - 'tilesetUid': 'ma', + 'tilesetUid': 'aa',...
3
diff --git a/src/modules/resize/resize.js b/src/modules/resize/resize.js @@ -9,6 +9,7 @@ export default { resize: { resizeHandler() { if (!swiper || !swiper.initialized) return; + swiper.emit('beforeResize'); swiper.emit('resize'); }, orientationChangeHandler() {
0
diff --git a/vis/test/snapshot/__snapshots__/list-base.test.js.snap b/vis/test/snapshot/__snapshots__/list-base.test.js.snap @@ -6,7 +6,7 @@ exports[`List entries component snapshot (BASE) matches a snapshot (zoomed-in, p id="list-col" style={ Object { - "width": "100%", + "width": undefined, } } > @@ -87,6 +87,7 @@ ex...
3
diff --git a/packages/dev-server/index.js b/packages/dev-server/index.js @@ -19,32 +19,9 @@ module.exports = function() { ) ); - const afterWebpack = (err, stats) => { - if (err) { - console.log(chalk.red(err.stack || err)); - if (err.details) { - console.log(chalk.red(err.details)); - } - return; - } - - const info = ...
2
diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json "url": "https://www.krakend.io/schema/v3.json" }, { - "name": "Datadog Service Catalog Definition", - "description": "Datadog service catalog definition file", + "name": "Datadog Service Definition", + "description": "Datadog Service Definition file", "...
10
diff --git a/src/lib/stores/AuthStore.js b/src/lib/stores/AuthStore.js @@ -7,6 +7,9 @@ import Cookies from "js-cookie"; */ class AuthStore { + constructor(name) { + this.tokenName = name || "token"; + } /** * The login token of the current user * @@ -18,16 +21,21 @@ class AuthStore { this.token = token || ""; } + @acti...
11
diff --git a/utilities/warning/is-trigger-tabbable.js b/utilities/warning/is-trigger-tabbable.js @@ -10,8 +10,8 @@ import { BUTTON, BUTTON_STATEFUL, BUTTON_GROUP, - CHECKBOX, - DATEPICKER, + FORMS_CHECKBOX, + DATE_PICKER, FORMS_INPUT, LOOKUP, TIME_PICKER @@ -40,8 +40,8 @@ if (process.env.NODE_ENV !== 'production') { &&...
10
diff --git a/src/sass/components/apl.scss b/src/sass/components/apl.scss } &-amount { + padding: 0 16px; &-title { color: rgba(0, 0, 0, 0.40); font-size: 13px; } &-totals { margin-top: 14px; + padding: 0 16px; &-item { margin: 4px 0; color: #787878; border-bottom: 1px solid #FF9B00; display: block; height: 1px; - width...
1
diff --git a/brands/tourism/hotel.json b/brands/tourism/hotel.json } }, "tourism/hotel|Jurys Inn": { - "countryCodes": ["gb", "ie", "cz"], + "countryCodes": ["cz", "gb", "ie"], "tags": { "brand": "Jurys Inn", "brand:wikidata": "Q12060924",
5
diff --git a/packages/frontend/src/actions/account.js b/packages/frontend/src/actions/account.js @@ -458,8 +458,7 @@ export const handleCreateAccountWithSeedPhrase = (accountId, recoveryKeyPair, fu export const finishAccountSetup = () => async (dispatch, getState) => { await dispatch(refreshAccount()); await dispatch(g...
1
diff --git a/_data/conferences.yml b/_data/conferences.yml --- +- title: ACL + year: 2020 + id: naacl20 + link: https://acl2020.org/ + deadline: '2020-12-9 23:59:59' + timezone: UTC-12 + date: July 6-8, 2020 + place: Seattle, Washington, USA + sub: NLP + - title: AAAI year: 2020 id: aaai20
3
diff --git a/addon/components/polaris-resource-list/bulk-actions.js b/addon/components/polaris-resource-list/bulk-actions.js @@ -61,9 +61,9 @@ export default Component.extend(ContextBoundEventListenersMixin, { * * @type {Object[]} * @default null - * @property passedActions + * @property actionsCollection */ - passedAc...
10
diff --git a/assets/js/googlesitekit/modules/datastore/sharing-settings.test.js b/assets/js/googlesitekit/modules/datastore/sharing-settings.test.js @@ -1037,7 +1037,7 @@ describe( 'core/modules sharing-settings', () => { ).toBeUndefined(); } ); - it( 'should return an empty object if there is no `defaultSharedOwnershi...
2
diff --git a/token-metadata/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/metadata.json b/token-metadata/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/metadata.json "symbol": "LEO", "address": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/td.vue/vue.config.js b/td.vue/vue.config.js @@ -32,7 +32,7 @@ module.exports = { outputDir: 'dist-desktop', builderOptions: { appId: 'org.owasp.threatdragon', - productName: 'OWASP-Threat-Dragon', + productName: 'Threat-Dragon-ng', directories: { output: 'dist-desktop' },
10
diff --git a/deepfence_ui/app/scripts/components/vulnerability-view/vulnerability-table-view/vulnerability-table-v2-view.js b/deepfence_ui/app/scripts/components/vulnerability-view/vulnerability-table-view/vulnerability-table-v2-view.js @@ -22,42 +22,49 @@ const maskOptionsMap = { host: [ { type: 'radio', - id: 'mask_a...
3
diff --git a/test/common.js b/test/common.js @@ -15,7 +15,10 @@ const config = { if (process.env.MYSQL_USE_TLS) { config.ssl = { rejectUnauthorized: false, - ca: fs.readFileSync(path.join(__dirname, '../examples/ssl/certs/ca-cert.pem'), 'utf-8') + ca: fs.readFileSync( + path.join(__dirname, '../examples/ssl/certs/ca.pe...
3
diff --git a/modules/core/src/utils/globals.js b/modules/core/src/utils/globals.js // micro modules like 'global' and 'is-browser'; /* global process, window, global, document */ -const isBrowser = +export const isBrowser = typeof process !== 'object' || String(process) !== '[object process]' || process.browser; -modul...
2
diff --git a/tests/harness/min_js/test_reporter.js b/tests/harness/min_js/test_reporter.js @@ -61,3 +61,11 @@ TestReporter.prototype.getRunTime = function() { TestReporter.prototype.getUniqueId = function() { return 'id'; }; + +/** + * Unsupported runner: Provide result-returning function used by JsTestRunner. + * @ret...
0
diff --git a/.drone.star b/.drone.star @@ -261,6 +261,7 @@ def setupServerAndApp(): "commands": [ "cd /var/www/owncloud/server/", "php occ config:system:set trusted_domains 1 --value=owncloud", + "php occ config:system:set skeletondirectory --value=''", ], }]
12
diff --git a/src/components/Composer/index.ios.js b/src/components/Composer/index.ios.js @@ -147,6 +147,7 @@ class Composer extends React.Component { autoComplete="off" placeholderTextColor={themeColors.placeholderText} ref={el => this.textInput = el} + maxHeight={this.props.isComposerFullSize ? '100%' : CONST.COMPOSER...
12
diff --git a/src/gameClasses/components/ui/VideoChatComponent.js b/src/gameClasses/components/ui/VideoChatComponent.js @@ -65,18 +65,14 @@ var VideoChatComponent = IgeEntity.extend({ var playerId = player.id() var unit = player.getSelectedUnit(); if (unit) { - //if player.vcGroupId has an id and self.groups[player.vcGr...
1
diff --git a/src/pages/using-spark/guides/writing-meaningful-web-content-with-semantic-html.mdx b/src/pages/using-spark/guides/writing-meaningful-web-content-with-semantic-html.mdx @@ -93,10 +93,12 @@ An element consists of three main parts: <h3 class="sprk-b-TypeDisplayFour sprk-u-mbm sprk-u-Measure">Example</h3> -`<p...
3
diff --git a/test/spec/engine.spec.js b/test/spec/engine.spec.js @@ -115,7 +115,7 @@ describe('Engine', function () { it('should perform a request with the state encoded in a payload (no layers, no dataviews) ', function (done) { spyOn($, 'ajax').and.callFake(function (params) { var actual = params.url; - var expected ...
10
diff --git a/package.json b/package.json }, "homepage": "https://github.com/dherault/serverless-offline", "keywords": [ - "Serverless", - "Amazon Web Services", - "AWS", - "Lambda", - "API Gateway" + "serverless", + "serverless framework", + "serverless offline", + "serverless plugin", + "serverless local", + "amazon w...
0
diff --git a/protocols/market/contracts/Market.sol b/protocols/market/contracts/Market.sol @@ -114,13 +114,12 @@ contract Market is Ownable { Intent memory newIntent = Intent(_staker, _amount, _expiry, _locator); // Insert after the next highest amount on the linked list. - if (insertIntent(newIntent, findPosition(_amo...
2
diff --git a/sirepo/package_data/static/js/sirepo-plotting.js b/sirepo/package_data/static/js/sirepo-plotting.js @@ -64,6 +64,18 @@ SIREPO.app.factory('plotting', function(appState, d3Service, frameCache, panelSt }; } + function formatNumber(value) { + if (value) { + if (Math.abs(value) < 1e3 && Math.abs(value) > 1e-3)...
7
diff --git a/editor.js b/editor.js @@ -16,7 +16,7 @@ import App from './app.js'; import {camera, getRenderer} from './app-object.js'; import {CapsuleGeometry} from './CapsuleGeometry.js'; import HtmlRenderer from 'html-render'; -import {storageHost} from './constants.js'; +import {storageHost, tokensHost} from './const...
0
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -1796,6 +1796,30 @@ InteractiveVideo.prototype.attachControls = function ($wrapper) { html: `<h3 id="${self.playbackRateMenuId}">${self.l10n.playbackRate}</h3>`, }); + const closePlaybackRateMenu = () => { + if (self.isMinimal) { + self...
0
diff --git a/pages/_document.js b/pages/_document.js import React from 'react' -import Document, {Head, Main, NextScript} from 'next/document' +import Document, {Head, Html, Main, NextScript} from 'next/document' const PIWIK_URL = process.env.NEXT_PUBLIC_PIWIK_URL const PIWIK_SITE_ID = process.env.NEXT_PUBLIC_PIWIK_SIT...
0
diff --git a/test/specs/selector_manager/index.js b/test/specs/selector_manager/index.js @@ -3,7 +3,7 @@ var Models = require('./model/SelectorModels'); var ClassTagView = require('./view/ClassTagView'); var ClassTagsView = require('./view/ClassTagsView'); var e2e = require('./e2e/ClassManager'); -var Editor = require(...
1
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "4.1.1"> +<!ENTITY version-java-client "4.2.0"> <...
12
diff --git a/package.json b/package.json "build": "node script/build.js", "test": "mocha && standard --fix && standard-markdown", "prepack": "check-for-leaks", - "prepush": "check-for-leaks" + "prepush": "check-for-leaks", + "release": "node script/release.js" } } \ No newline at end of file
12
diff --git a/src/modules/Graphics.js b/src/modules/Graphics.js @@ -760,9 +760,9 @@ class Graphics { textObj.textContent = textString if (textString.length > 0) { // ellipsis is needed - if (textObj.getComputedTextLength() >= width) { + if (textObj.getComputedTextLength() >= width / 0.8) { for (let x = textString.length...
7
diff --git a/src/core/lib/FileSignatures.mjs b/src/core/lib/FileSignatures.mjs @@ -828,7 +828,7 @@ export const FILE_SIGNATURES = { 0: 0x78, 1: [0x1, 0x9c, 0xda, 0x5e] }, - extractor: null + extractor: extractZlib }, { name: "xz compression", @@ -1443,6 +1443,37 @@ export function extractGZIP(bytes, offset) { } +/** + ...
0
diff --git a/views/kan-game-wrapper.es b/views/kan-game-wrapper.es @@ -13,13 +13,6 @@ import { layoutResizeObserver } from 'views/services/layout' const config = remote.require('./lib/config') const poiControlHeight = 30 -const getTitlebarHeight = () => { - if (document.querySelector('title-bar') && getComputedStyle(do...
12
diff --git a/src/system/device.js b/src/system/device.js @@ -380,7 +380,7 @@ let device = { * @readonly * @name nodeJS */ - nodeJS : (typeof process !== "undefined") && (process.release.name === "node"), + nodeJS : (typeof globalThis.process !== "undefined") && (typeof globalThis.process.release !== "undefined") && (gl...
1
diff --git a/src/App.jsx b/src/App.jsx @@ -4,6 +4,7 @@ import classnames from 'classnames'; import logo from './logo.svg'; import styles from './App.module.css'; import MagicMenu from './MagicMenu.jsx'; +import {defaultAvatarUrl} from '../constants'; import Header from './Header.jsx'; import Footer from './Footer.jsx';...
4
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -242,7 +242,7 @@ function fetchIOUReport(iouReportID, chatReportID) { } const iouReportData = response.reports[iouReportID]; if (!iouReportData) { - console.error(`No iouReportData found for reportID ${iouReportID}, report it most likely settled.`)...
14
diff --git a/src/og/control/LayerSwitcher.js b/src/og/control/LayerSwitcher.js @@ -23,7 +23,10 @@ class LayerSwitcher extends Control { this.overlaysContainer = null; this.layerRecord = null; // Each layer record has it's own dropzone to the top of the div. We need a final one to the very end. - this.lastDropZone = ele...
2
diff --git a/client/app/app.js b/client/app/app.js @@ -12,7 +12,7 @@ import "angular-xeditable"; import ngLocale from "angular-dynamic-locale"; // config -import Common from "./common/common"; +import Services from "./services/services"; import PageComponents from "./components/pages"; import AppMaterial from "./app.ma...
1
diff --git a/data/operators/amenity/fire_station.json b/data/operators/amenity/fire_station.json "displayName": "Chicago Fire Department", "id": "chicagofiredepartment-79af54", "locationSet": { - "include": [[-87.65, 41.9, 35]] + "include": [[-87.73, 41.83, 27]] }, "tags": { "amenity": "fire_station", "displayName": "C...
7
diff --git a/lime/system/System.hx b/lime/system/System.hx @@ -6,6 +6,9 @@ import lime._backend.native.NativeCFFI; import lime.app.Application; import lime.app.Config; import lime.math.Rectangle; +import lime.utils.ArrayBuffer; +import lime.utils.UInt8Array; +import lime.utils.UInt16Array; #if flash import flash.net.UR...
7
diff --git a/lib/slack/oauth.js b/lib/slack/oauth.js @@ -11,7 +11,7 @@ module.exports = { // FIXME: make dynamic const scope = 'links:read,links:write,commands,chat:write,team:read'; const slackRootUrl = process.env.SLACK_ROOT_URL || 'https://slack.com'; - const state = crypto.randomBytes(Math.ceil(30 / 2)).toString('h...
4
diff --git a/src/client/js/components/PageEditor/LinkEditModal.jsx b/src/client/js/components/PageEditor/LinkEditModal.jsx @@ -74,7 +74,7 @@ class LinkEditModal extends React.PureComponent { let linkInputValue = ''; let linkerType = 'mdLink'; - // https://regex101.com/r/1UuWBJ/9 + // https://regex101.com/r/2fNmUN/1 if ...
14
diff --git a/userscript.user.js b/userscript.user.js @@ -46031,18 +46031,22 @@ var $$IMU_EXPORT$$; var close_on_leave_el = get_close_on_leave_el() && popup_el && !popup_el_automatic; var outside_of_popup_el = false; + var popup_el_hidden = false; if (close_on_leave_el) { var popup_el_rect = popup_el.getBoundingClientRe...
11
diff --git a/packages/react-static/src/static/generateTemplates.js b/packages/react-static/src/static/generateTemplates.js @@ -9,11 +9,13 @@ export default async ({ config }) => { const route404 = routes.find(route => route.path === '404') const id404 = route404.templateIndex - const productionImports = ` -import unive...
14
diff --git a/src/mavo.js b/src/mavo.js @@ -212,7 +212,7 @@ var _ = self.Mavo = $.Class({ if (location.hash) { this.element.addEventListener("mavo:load.mavo", evt => { var callback = records => { - var target = $(location.hash); + var target = document.getElementById(location.hash.slice(1)); if (target || !location.hash...
9
diff --git a/package.json b/package.json "body-parser": "^1.18.3", "chai": "^2.3.0", "del": "^3.0.0", + "del-cli": "^1.1.0", "endpoint-utils": "^1.0.1", "eslint": "4.17.0", "eslint-plugin-hammerhead": "0.1.10", ], "scripts": { "test": "gulp travis", - "publish-please": "publish-please", + "publish-please": "del-cli pac...
7
diff --git a/module/gurps.js b/module/gurps.js @@ -1729,7 +1729,7 @@ Hooks.once('ready', async function () { }) let handle = (actor) => { actor.handleDamageDrop(dropData.payload) } - if (dropData.type === 'Item') handle = (actor) => { actor.createOwnedItem(game.items.get(dropData.id)) } + if (dropData.type === 'Item') ...
11
diff --git a/diorama.js b/diorama.js @@ -496,6 +496,7 @@ const createPlayerDiorama = ({ glyphBackground = false, dotsBackground = false, autoCamera = true, + detached = false, } = {}) => { // _ensureSideSceneCompiled(); @@ -844,9 +845,10 @@ const createPlayerDiorama = ({ renderer.setClearColor(oldClearColor, oldClearAl...
0
diff --git a/src/tests/controllers/messageLength.test.ts b/src/tests/controllers/messageLength.test.ts import test, { ExecutionContext } from 'ava' -import { randomText, iterate } from '../utils/helpers' +import { randomText, iterate, sleep } from '../utils/helpers' import { addContact } from '../utils/save' import { d...
0
diff --git a/site/_data/contributors.js b/site/_data/contributors.js @@ -5,7 +5,7 @@ module.exports = async function() { if (process.env.NODE_ENV === 'production') { try { const response = await got( - 'https://api.github.com/repos/stefanjudis/tiny-helpers/contributors' + 'https://api.github.com/repos/stefanjudis/tiny-...
1
diff --git a/packages/node_modules/@node-red/editor-client/src/js/nodes.js b/packages/node_modules/@node-red/editor-client/src/js/nodes.js @@ -415,7 +415,7 @@ RED.nodes = (function() { nodeTabMap[z][node.id] = node; var nl = nodeLinks[node.id]; if (nl) { - nl.in.forEach((l) => { + nl.in.forEach(function(l) { var idx = ...
2
diff --git a/src/client/components/composer/NewRequest/WebRTCServerEntryForm.jsx b/src/client/components/composer/NewRequest/WebRTCServerEntryForm.jsx -import React, { useState, useEffect } from "react"; -import { Controlled as CodeMirror } from "react-codemirror2"; -import "codemirror/addon/edit/matchbrackets"; -impor...
10
diff --git a/js/component/file-tile.js b/js/component/file-tile.js @@ -5,7 +5,7 @@ import {Thumbnail, TruncatedText, CreditAmount} from '../component/common.js'; let FileTile = React.createClass({ _isMounted: false, - _statusCheckInterval: 5000, + _fileInfoCheckInterval: 5000, propTypes: { metadata: React.PropTypes.obj...
10
diff --git a/components/Article/PayNote.js b/components/Article/PayNote.js @@ -235,12 +235,22 @@ const generateKey = (note, index) => { return { ...note, key: `custom-${index}` } } +const isPermissibleIOSCta = cta => !cta || cta === 'trialForm' + const disableForIOS = note => { - return { ...note, target: { ...note.tar...
11
diff --git a/player-avatar-binding.js b/player-avatar-binding.js @@ -14,6 +14,11 @@ export function applyPlayerTransformsToAvatar(player, session, rig) { rig.inputs.rightGamepad.quaternion.copy(player.rightHand.quaternion); } } +/* export function applyPlayerMetaTransformsToAvatar(player, session, rig) { + if (!session...
0
diff --git a/data.js b/data.js @@ -5116,8 +5116,8 @@ module.exports = [ { name: "preact", github: "developit/preact", - tags: ["dom", "templating"], - description: "Tiny & fast Component-based Virtual DOM framework.", + tags: ["dom", "diff", "templating", "react", "components"], + description: "Preact is a fast, 3kB al...
0
diff --git a/src/module/actor/actor.js b/src/module/actor/actor.js @@ -286,7 +286,7 @@ export class ActorSFRPG extends Actor { modifiersToConcat = item.data.modifiers; break; case "feat": - if (item.data.labels && item.data.labels.featType === "Passive") { + if (item.data.activation.type === "") { modifiersToConcat = i...
1
diff --git a/src/Data.js b/src/Data.js @@ -296,6 +296,8 @@ CM.Data.ConfigDefault = { GCTimer: 1, Favicon: 1, WrinklerButtons: 1, + ShowMysteriousAchievements: 0, + ShowShadowMysteriousAchievements: 0, Header: {BarsColors: 1, Calculation: 1, Notification: 1, NotificationGC: 1, NotificationFC: 1, NotificationSea: 1, Noti...
0
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,16 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.49.3] -- 2019-08-20 + +### Fixed +- Fix graphs with `visible: false` `sankey` traces [#4123] +- Fix `scattergl` with `mode: 'text'` a...
3
diff --git a/content/specs/machine-type.md b/content/specs/machine-type.md @@ -59,4 +59,4 @@ The currently available Xcode versions are as follows: * [Xcode 13.0 - 13.2 base image](../specs/versions-macos-xcode-13-0/): `13.0`, `13.1`, `13.2.1` * [Xcode 12.5 base image](../specs/versions-macos-xcode-12-5/): `12.5.1`, `1...
3
diff --git a/src/og/scene/Planet.js b/src/og/scene/Planet.js @@ -77,7 +77,13 @@ const EVENT_NAMES = [ * Triggered when some layer visibility changed. * @event og.scene.Planet#layervisibilitychange */ - "layervisibilitychange" + "layervisibilitychange", + + /** + * Triggered when all data is loaded + * @event og.scene.P...
0
diff --git a/package.json b/package.json "url-loader": "^1.1.2", "web-resource-inliner": "^4.2.1", "webpack": "^4.25.1", - "webpack-dev-server": "^3.1.10", + "webpack-dev-server": "^3.1.14", "webpack-node-externals": "^1.7.2", "worker-loader": "^2.0.0" }, "lodash": "^4.17.11", "loglevel": "^1.6.1", "loglevel-message-pr...
0
diff --git a/packages/spark/base/inputs/_text-input.scss b/packages/spark/base/inputs/_text-input.scss @@ -45,7 +45,7 @@ $sprk-input-huge-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.08) !default; .sprk-b-InputContainer--huge .sprk-b-TextInput:focus { border-width: $sprk-text-input-huge-focus-border-width; } -.sprk-b-Inp...
1
diff --git a/packages/vulcan-lib/lib/modules/errors.js b/packages/vulcan-lib/lib/modules/errors.js /* +Get whatever word is contained between the first two double quotes + +*/ +const getFirstWord = input => { + const parts = /"([^"]*)"/.exec(input); + if (parts === null) { + return null; + } + return parts[1]; +} + +/*...
7
diff --git a/test/jasmine/tests/lib_number_format_test.js b/test/jasmine/tests/lib_number_format_test.js @@ -128,4 +128,10 @@ describe('number format', function() { expect(numberFormat(format)(String(-number))).toEqual(negExp, 'string negative'); }); }); + + it('padding and alignment without formatting numbers', functi...
0
diff --git a/token-metadata/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/metadata.json b/token-metadata/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/metadata.json "symbol": "ULLU", "address": "0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/app/models/carto/user_migration_export.rb b/app/models/carto/user_migration_export.rb @@ -33,7 +33,7 @@ module Carto update_attributes(state: STATE_EXPORTING) package = if backup - UserMigrationPackage.for_backup("backup_#{user.username}_#{Time.now}", log) + UserMigrationPackage.for_backup("backup_#{user.u...
4
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -266,9 +266,6 @@ articles: - title: "Picture" url: "/user-profile/user-picture" - - title: "User Search" - url: "/users/search" - - title: "User Metadata" url: "/metadata"
2
diff --git a/README.md b/README.md @@ -45,6 +45,13 @@ GET https://api.spacexdata.com/v1/launches/latest }, "core_serial": "B1031", "cap_serial": null, + "reuse": { + "core": true, + "side_core1": false, + "side_core2": false, + "fairings": false, + "capsule": false + }, "launch_site": { "site_id": "ksc_lc_39a", "site_n...
3
diff --git a/projects/ngx-extended-pdf-viewer/src/lib/ngx-extended-pdf-viewer.component.ts b/projects/ngx-extended-pdf-viewer/src/lib/ngx-extended-pdf-viewer.component.ts @@ -304,6 +304,7 @@ export class NgxExtendedPdfViewerComponent implements OnInit, AfterViewInit, OnC */ private autoHeight = false; + @Input() public...
11
diff --git a/experimental/orchestrator/CLI/ModelTuning/README.md b/experimental/orchestrator/CLI/ModelTuning/README.md @@ -5,7 +5,7 @@ The following sample illustrates how to evaluate and improve a simple language m ## Prerequisites * [Bot Framework CLI][5] -* [Bot Framework CLI Orchestrator plugin](1) +* [Bot Framewor...
1
diff --git a/src/traces/isosurface/attributes.js b/src/traces/isosurface/attributes.js @@ -136,7 +136,8 @@ colorscaleAttrs('', { min: 0, max: 1, dflt: 1, - description: 'Sets the opacity of the iso-surface.' + editType: 'calc', + description: 'Sets the fill ratio (opacity) of the iso-surface.' }, volumefill: { @@ -145,...
0
diff --git a/ReviewQueueHelper.user.js b/ReviewQueueHelper.user.js // @description Keyboard shortcuts, skips accepted questions and audits (to save review quota) // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 3.7.6 +// @version 3.7.7 // // @include https://*stackoverflow.com...
8
diff --git a/server/services/searchLinkedCatAuthorview.php b/server/services/searchLinkedCatAuthorview.php @@ -14,9 +14,9 @@ $post_params = $_POST; $result = search("linkedcat_authorview", $dirty_query, $post_params, - array("author_id", "doc_count", "living_dates", "image_link"), + array("author_name", "doc_count", "l...
3
diff --git a/outbound/queue.js b/outbound/queue.js @@ -50,7 +50,7 @@ const temp_fail_queue = exports.temp_fail_queue = new TimerQueue(); let queue_count = 0; -exports.get_stats = () => in_progress + '/' + exports.delivery_queue.length() + '/' + exports.temp_fail_queue.length() +exports.get_stats = () => `${in_progress}...
14
diff --git a/app/components/ember-survey.js b/app/components/ember-survey.js @@ -5,6 +5,7 @@ import {computed } from '@ember/object'; import { pluralize } from 'ember-inflector'; export default Component.extend({ + tagName: '', router: service(), init() { this._super(...arguments);
13
diff --git a/src/views/community/index.js b/src/views/community/index.js @@ -13,6 +13,7 @@ import Icon from '../../components/icons'; import generateMetaInfo from 'shared/generate-meta-info'; import AppViewWrapper from '../../components/appViewWrapper'; import Column from '../../components/column'; +import { Button } f...
14
diff --git a/articles/support/pre-deployment/tests/best-practice.md b/articles/support/pre-deployment/tests/best-practice.md @@ -8,10 +8,10 @@ The following checks cannot be automated, so we recommend manually checking thes | Check | Description | | ---- | ----------- | -| Anomaly Detection | Review your account's [Ano...
0
diff --git a/source/views/panels/PopOverView.js b/source/views/panels/PopOverView.js @@ -269,7 +269,6 @@ const PopOverView = Class({ - atNode -> the node within the view to align to - positionToThe -> 'bottom'/'top'/'left'/'right' - alignEdge -> 'left'/'centre'/'right'/'top'/'middle'/'bottom' - - inParent -> The view t...
2
diff --git a/admin/admin.js b/admin/admin.js @@ -2763,7 +2763,7 @@ function getDashCard(dev, groupImage) { } else if (stateDef.role == 'level.dimmer' && stateDef.write) { val = `<span class="range-field dash"><input type="range" min="0" max="100" ${(val != undefined) ? `value="${val}"` : ""} /></span>`; } else if (stat...
12
diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json "Entropy", "Frequency distribution", "Chi Square", - "Haversine distance", "Detect File Type", "Scan for Embedded Files", "Disassemble x86", "Generate UUID", "Generate TOTP", "Generate HOTP", + "Haversine distance", "Render Image", "Remove E...
5
diff --git a/src/inner-slider.js b/src/inner-slider.js @@ -309,7 +309,7 @@ export class InnerSlider extends React.Component { ...this.props, ...this.state, trackRef: this.track, - useCSS: !dontAnimate, + useCSS: this.props.useCSS && !dontAnimate, }) if (!state) return beforeChange && beforeChange(currentSlide, state.cu...
1
diff --git a/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/examples/index.js b/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/examples/index.js var dispatch = require( './../lib' ); var opts = { - 'token': 'c1a3e8dc2d76eec68f3435a820812560f2ee058b', + 'token': '<your_token_goes_here>', 'useragent':...
14
diff --git a/thali/install/ios/nativeInstaller.js b/thali/install/ios/nativeInstaller.js @@ -204,7 +204,7 @@ function addFramework( var buildDir = path.join(checkoutDir, 'thali-ios', 'Carthage', 'Build'); console.log('Building CocoaAsyncSocket.framework'); - return biuldCocoaAsyncSocket(checkoutDir, buildDir, buildWith...
1
diff --git a/lib/node_modules/@stdlib/math/base/complex/divide/test/test.js b/lib/node_modules/@stdlib/math/base/complex/divide/test/test.js @@ -233,7 +233,7 @@ tape( 'the function computes a complex quotient', function test( t ) { q = cdiv( re1[ i ], im1[ i ], re2[ i ], im2[ i ] ); if ( quotients.qreNaN[ i ] ) { - t.o...
4
diff --git a/src/context/actions/hooksTestCaseActions.ts b/src/context/actions/hooksTestCaseActions.ts @@ -10,7 +10,7 @@ export const actionTypes = { DELETE_HOOKRENDER: 'DELETE_HOOKRENDER', UPDATE_HOOKRENDER: 'UPDATE_HOOKRENDER', ADD_HOOK_UPDATES: 'ADD_HOOK_UPDATES', - DELETE_HOOK_UPDATES: 'DELETE_HOOK_UPDATE', + DELET...
1
diff --git a/airesources/PHP/src/Ship.php b/airesources/PHP/src/Ship.php @@ -36,6 +36,12 @@ class Ship extends Entity */ private $planet; + /** + * @var Coordinate + */ + private $coordinateNextTurn; + + public function __construct( Player $owner, int $id, @@ -121,7 +127,8 @@ class Ship extends Entity $angleRad = $this...
12
diff --git a/data.js b/data.js @@ -5134,7 +5134,7 @@ module.exports = [ github: "gibbok/animatelo", tags: ["animation", "animate", "web animation"], description: "Animatelo is a bunch of cool, fun, and cross-browser animations for you to use in your projects. This is a porting to Web Animation API of the fabulous anima...
0