code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/js/fcoin.js b/js/fcoin.js @@ -499,7 +499,9 @@ module.exports = class fcoin extends Exchange { } if (api === 'private') { this.checkRequiredCredentials (); - body = this.json (query); + if (method === 'POST') { + body = this.urlencode (query); + } request = '/' + this.version + request; url += request; let ...
1
diff --git a/website/src/docs/url.md b/website/src/docs/url.md @@ -97,3 +97,12 @@ strings: { } ``` +## Methods + +### `addFile` + +You can add a file to the Url plugin directly via the API, like this: + +```js +uppy.getPlugin('Url').addFile('https://example.com/myfile.pdf').then(uppy.upload) +```
0
diff --git a/parent_composer.js b/parent_composer.js @@ -33,7 +33,7 @@ function pickParentUnits(conn, arrWitnesses, onDone){ // we need at least one compatible parent, otherwise go deep if (rows.filter(function(row){ return (row.count_matching_witnesses >= count_required_matches); }).length === 0) return pickDeepParent...
9
diff --git a/lib/assets/javascripts/do-catalog/router.js b/lib/assets/javascripts/do-catalog/router.js @@ -94,7 +94,7 @@ router.afterEach(to => { if (!to.meta.titleInComponent) { document.title = to.meta.title(to); } - addCanonical(`https://carto.com/spatial-data-catalog/browser${to.fullPath}`); + addCanonical(`https:/...
2
diff --git a/api/core/sun/index.js b/api/core/sun/index.js module.exports.init = require('./sun.init.js'); -module.exports.state = require('./sun.state.js'); +module.exports.getState = require('./sun.getState.js'); module.exports.isItNight = require('./sun.isItNight.js'); module.exports.isItDay = require('./sun.isItDay...
10
diff --git a/detox/ios/Detox/Utilities/UIImage+DetoxUtils.m b/detox/ios/Detox/Utilities/UIImage+DetoxUtils.m NSString* somePath = NSHomeDirectory(); NSString* userPath = [somePath substringToIndex:[somePath rangeOfString:@"/Library"].location]; desktopURL = [[NSURL fileURLWithPath:userPath] URLByAppendingPathComponent:...
2
diff --git a/src/components/dashboard/FaceVerification/components/DeviceOrientationError.js b/src/components/dashboard/FaceVerification/components/DeviceOrientationError.js @@ -34,7 +34,7 @@ const DeviceOrientationError = ({ styles, displayTitle, onRetry, exception }) => } Dimensions.addEventListener('change', listener...
0
diff --git a/src/lib/wallet/GoodWalletClass.js b/src/lib/wallet/GoodWalletClass.js @@ -576,9 +576,9 @@ export class GoodWallet { return this.sendTransaction(this.UBIContract.methods.claim(), callbacks) } - checkEntitlement(): Promise<number> { + async checkEntitlement(): Promise<number> { try { - return retry(() => + r...
0
diff --git a/test/testHelpers.js b/test/testHelpers.js @@ -54,12 +54,15 @@ export function getMountPoint (t) { export function testAsync (name, func) { test(name, async assert => { + let success = false try { await func(assert) - } catch (error) { - assert.fail(error.message) - console.error(error.stack) + success = tr...
7
diff --git a/src/ace/AceStatusBar.hx b/src/ace/AceStatusBar.hx @@ -28,7 +28,7 @@ class AceStatusBar { public var contextRow:Int = 0; public var contextName:String = null; public var ignoreUntil:Float = Main.window.performance.now(); - public var delayTime(default, null):Int; + public var delayTime(default, null):Int = ...
11
diff --git a/test/jasmine/tests/select_test.js b/test/jasmine/tests/select_test.js @@ -420,4 +420,44 @@ describe('select box and lasso', function() { .catch(fail) .then(done); }); + + it('should work on scattercarpet traces', function(done) { + var fig = Lib.extendDeep({}, require('@mocks/scattercarpet')); + var gd = c...
0
diff --git a/demos/nice-scale.html b/demos/nice-scale.html <html> <head> <meta charset="utf-8"> - <title>Nice Scale</title> + <title>Nice Scale &amp; Ticks</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../dist/uPlot.min.css"> + <style> + #resize { + resize: bo...
7
diff --git a/src/filesystem/impls/appshell/AppshellFileSystem.js b/src/filesystem/impls/appshell/AppshellFileSystem.js @@ -162,7 +162,7 @@ define(function (require, exports, module) { return FileSystemError.ALREADY_EXISTS; case appshell.fs.ERR_ENCODE_FILE_FAILED: return FileSystemError.ENCODE_FILE_FAILED; - case appshe...
1
diff --git a/src/layouts/UserLayout.js b/src/layouts/UserLayout.js @@ -46,13 +46,16 @@ class UserLayout extends React.PureComponent { return null; }); } - if (isOauth && oauthInfo && isLogin) { - const isDisableAutoLogin = query.disable_auto_login; - if (oauthInfo.is_auto_login && isDisableAutoLogin !== 'true') { + con...
1
diff --git a/kitty-items-js/README.md b/kitty-items-js/README.md @@ -41,6 +41,11 @@ Note that when the API starts, it will automatically run the database migrations docker-compose up -d ``` +- Configure the value `SALE_OFFER_EVENT_NAME` on the `.env`, following the Flow event + format (`A.ContractAddress.Contract.Event...
0
diff --git a/lib/node_modules/@stdlib/types/ndarray/ctor/lib/main.js b/lib/node_modules/@stdlib/types/ndarray/ctor/lib/main.js @@ -83,6 +83,9 @@ function ctor( dtype, ndims, options ) { this._iget = parent.prototype.iget; // TODO: remove this._iset = parent.prototype.iset; // TODO: remove + // Set private properties: +...
12
diff --git a/token-metadata/0x130Da3E198f092Fe2a6e6c21893dc77746d7e406/metadata.json b/token-metadata/0x130Da3E198f092Fe2a6e6c21893dc77746d7e406/metadata.json "symbol": "NEWS", "address": "0x130Da3E198f092Fe2a6e6c21893dc77746d7e406", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/__experimental__/components/select/select.style.js b/src/__experimental__/components/select/select.style.js import styled, { css } from 'styled-components'; import PropTypes from 'prop-types'; import baseTheme from '../../../style/themes/base'; +import StyledPill from '../../../components/pill/pill.sty...
14
diff --git a/examples/README.md b/examples/README.md # Plugin examples The following examples should help you to get up & running with Plugin development. + +* [Hello World](./hello-world): a starter plugin example, which illustrates how to add a menu command to the Plugins menu and execute some code when it is selecte...
7
diff --git a/src/geometry/Path.js b/src/geometry/Path.js @@ -97,11 +97,13 @@ class Path extends Geometry { 'easing': easing }, frame => { if (!this.getMap()) { + if (player.playState !== 'finished') { player.finish(); if (cb) { const coordinates = this.getCoordinates(); cb(frame, coordinates[coordinates.length - 1]); }...
1
diff --git a/generators/server/templates/build.gradle.ejs b/generators/server/templates/build.gradle.ejs @@ -203,7 +203,7 @@ liquibase { activities { main { driver "<% if (devDatabaseType === 'mysql') { %>com.mysql.cj.jdbc.Driver<% } else if (devDatabaseType === 'mariadb') { %>org.mariadb.jdbc.Driver<% } else if (devDa...
3
diff --git a/src/client/public/functions.ts b/src/client/public/functions.ts @@ -66,27 +66,27 @@ Office.initialize = () => { (window as any).launchFeedback = (event) => launchInDialog(urls.feedback, event, 60, 60); - (window as any).launchAsk = (event) => launchInDialog(urls.ask, event, 60, 60); + (window as any).launc...
12
diff --git a/src/scripts/browser/menus/templates/main-help.js b/src/scripts/browser/menus/templates/main-help.js @@ -4,10 +4,10 @@ export default { label: '&Help', role: 'help', submenu: [{ - label: 'App Website', + label: 'Open App Website', click: $.openUrl('https://messengerfordesktop.com/') }, { - label: 'Email Us'...
14
diff --git a/sources/us/pa/union.json b/sources/us/pa/union.json "address": "Union County Government Center, 155 N. 15th Street, Lewisburg, PA 17837" }, "website": "https://unioncounty.maps.arcgis.com/home/index.html", - "data": "https://github.com/aaronpdennis/pa-county-addresses/raw/master/data/UNION/UNION_addresses....
14
diff --git a/assets/js/modules/analytics/setup.js b/assets/js/modules/analytics/setup.js @@ -906,13 +906,13 @@ class AnalyticsSetup extends Component { return ( <div className={ showErrorFormat ? 'googlesitekit-error-text' : '' }> - <p><p>{ + <p>{ showErrorFormat ? /* translators: %s: Error message */ sprintf( __( 'Err...
2
diff --git a/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js b/src/pages/settings/Payments/PaymentsPage/BasePaymentsPage.js @@ -2,7 +2,7 @@ import React from 'react'; import { View, TouchableOpacity, Dimensions, InteractionManager, LayoutAnimation, } from 'react-native'; -import {withOnyx} from 'react-nati...
4
diff --git a/src/base/FormElementMixin.js b/src/base/FormElementMixin.js @@ -89,7 +89,7 @@ export default function FormElementMixin(Base) { this.setAttribute("name", this[state].name); } - if (this[nativeInternals]) { + if (this[nativeInternals] && this[nativeInternals].setValidity) { // Reflect validity state to inter...
9
diff --git a/src/views/Swap/Swap.vue b/src/views/Swap/Swap.vue @@ -806,7 +806,7 @@ export default { return getSwapProvider(this.activeNetwork, this.selectedQuote.provider) }, defaultAmount() { - return 1 + return this.max; }, isPairAvailable() { const liqualityMarket = this.networkMarketData?.find(
3
diff --git a/source/dom/Element.js b/source/dom/Element.js @@ -578,6 +578,26 @@ Object.toCSSString = function ( object ) { return result; }; +/** + Function: O.Element.getAncestors + + Gets an array of all the elements ancestors, including itself. + + Parameters: + el - {Element} The element whose ancestors will be ret...
0
diff --git a/_includes/languages.html b/_includes/languages.html <div class="col l4"> <!----------multi language support-----------> - <p class="white-text" style="font-weight: bold;font-size:1.3em;">Language</p> + <p class="black-text" style="font-weight: bold;font-size:1.3em;">Language</p> <div style="margin-top:-50p...
3
diff --git a/js/ui/templates/hamburger-menu.es6.js b/js/ui/templates/hamburger-menu.es6.js @@ -19,17 +19,15 @@ module.exports = function () { </a> </li> <li> - <a href="https://www.surveymonkey.com/r/feedback_firefox" - class="menu-title" - target="_blank"> + <a href="mailto:firefox@duckduckgo.com?subject=Firefox%20Ext...
14
diff --git a/app/pages/lab/workflow-viewer/task.cjsx b/app/pages/lab/workflow-viewer/task.cjsx React = require 'react' ReactDOM = require 'react-dom' -Resizable = require 'react-component-resizable' +Resizable = require('react-component-resizable').default {TaskName, RequireBox, HelpButton} = require './task-helpers' A...
1
diff --git a/lib/validate.js b/lib/validate.js @@ -17,6 +17,23 @@ const preferredExtensions = [ '.js', '.ts', '.jsx', '.tsx' ]; module.exports = { validate() { + const getHandlerFileAndFunctionName = functionDefinition => { + const { handler: handlerProp, image: imageProp } = functionDefinition; + + if (handlerProp) { ...
11
diff --git a/src/components/dashboard/Claim.js b/src/components/dashboard/Claim.js @@ -150,14 +150,24 @@ const Claim = ({ screenProps }: ClaimProps) => { <Wrapper> <TopBar push={screenProps.push} /> <Section.Stack grow={3} justifyContent="flex-start"> - <Text style={styles.description}>GoodDollar allows you to collect<...
14
diff --git a/main_chain.js b/main_chain.js @@ -799,7 +799,7 @@ function determineIfStableInLaterUnits(conn, earlier_unit, arrLaterUnits, handle var arrNotIncludedTips = []; var arrRemovedBestChildren = []; - function goDownAndCollectBestChildren(arrStartUnits, cb){ + function goDownAndCollectBestChildrenOld(arrStartUni...
10
diff --git a/src/components/select/Select.js b/src/components/select/Select.js @@ -518,7 +518,7 @@ export default class SelectComponent extends Field { } refresh(value, { instance }) { - if (this.component.clearOnRefresh && !instance.pristine) { + if (this.component.clearOnRefresh && (instance && !instance.pristine)) {...
9
diff --git a/source/delegate/test/Delegate.js b/source/delegate/test/Delegate.js @@ -69,10 +69,9 @@ contract('Delegate Integration Tests', async accounts => { await setupIndexer() await setupFactory() - let trx = await delegateFactory.createDelegate( - aliceAddress, - aliceTradeWallet - ) + let trx = await delegateFact...
3
diff --git a/packages/build/src/log/main.js b/packages/build/src/log/main.js @@ -219,7 +219,9 @@ const logTimer = function(logs, durationNs, timerName) { const logFailPluginWarning = function(methodName, event) { logError( undefined, - `Plugin error: Inside "${event}", utils.build.failPlugin() should be used instead of...
7
diff --git a/tools/patch_libs.js b/tools/patch_libs.js @@ -31,8 +31,9 @@ function patch_slowaes(text) { .replace(/(var blockSize = 16;\s*)(for \(var i = data\.length - 1;)/, "$1if (data.length > 16) {\r\n\t\t$2") .replace(/(data\.splice\(data\.length - padCount, padCount\);\r\n)/, "$1\t\t}\r\n"); - // this section is t...
6
diff --git a/story.js b/story.js @@ -432,10 +432,11 @@ done && currentConversation.finish(); }; export const handleStoryMouseClick = async (e) => { - if (cameraManager.pointerLockElement) { if (e.button === 0 && (cameraManager.focus && zTargeting.focusTargetReticle)) { const app = metaversefile.getAppByPhysicsId(zTarge...
0
diff --git a/magda-gateway/src/Authenticator.ts b/magda-gateway/src/Authenticator.ts @@ -139,7 +139,9 @@ export default class Authenticator { this.authApiBaseUrl, options.enableSessionForAPIKeyAccess ); - this.validAndRecoverSession = this.validAndRecoverSession.bind(this); + this.validateAndRefreshSession = this.valid...
10
diff --git a/src/commands/Settings/Track.js b/src/commands/Settings/Track.js @@ -23,7 +23,7 @@ class Track extends Command { async run(message) { const eventsOrItems = new RegExp(`${eventTypes.join('|').replace(/\./ig,'\.')}|${rewardTypes.join('|')}|all|events|items|fissures|syndicates|conclave|clantech|deals`, 'ig'); ...
4
diff --git a/.travis.yml b/.travis.yml @@ -4,7 +4,7 @@ node_js: - '8' cache: yarn after_success: - - 'if [ "$TRAVIS_REPO_SLUG" = "auth0/cosmos" ]; cp tooling/deployment-package.json build/package.json' - - 'if [ "$TRAVIS_REPO_SLUG" = "auth0/cosmos" ]; then cd build && npx now-cd --team auth0-design --alias "master=auth...
13
diff --git a/src/components/layouts/Layout.js b/src/components/layouts/Layout.js @@ -78,15 +78,22 @@ const Layout = ({ children, initialContext, hasSideBar, location }) => { </div> <div className="sprk-u-BackgroundColor--black - sprk-u-pvm + sprk-u-pam sprk-u-AbsoluteCenter" > + <p className="sprk-u-Color--white"> + De...
3
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -34,12 +34,12 @@ We use the following [labels](https://github.com/plotly/plotly.js/labels) to tra #### Prerequisites - git -- [node.js](https://nodejs.org/en/). We recommend using node.js v8.x, but all +- [node.js](https://nodejs.org/en/). We recommend using node.js v10...
3
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -25,6 +25,7 @@ import * as mathUtils from './math-utils.js'; import JSON6 from 'json-6'; import * as materials from './materials.js'; import * as geometries from './geometries.js'; +import {MeshLodder} from './mesh-lodder.js'; import * as avatarCruncher from '...
0
diff --git a/src/article/converter/r2t/jats2internal.js b/src/article/converter/r2t/jats2internal.js @@ -321,6 +321,9 @@ function _populateBody (doc, jats, jatsImporter) { let bodyEl = jats.find('article > body') if (bodyEl) { let body = doc.get('body') + // ATTENTION: because there is already a body node in the docume...
4
diff --git a/src/interactions/warframe/LFG.js b/src/interactions/warframe/LFG.js @@ -74,13 +74,12 @@ const fmtLoc = (options, i18n) => { let val = ''; if (options?.get('place')?.value) { val += options?.get('place')?.value; + } if (options?.get('place_custom')?.value) { - val += ` (${options?.get('place_custom')?.value...
1
diff --git a/lib/jsdom/living/xmlhttprequest.js b/lib/jsdom/living/xmlhttprequest.js @@ -720,7 +720,7 @@ module.exports = function createXMLHttpRequest(window) { if (!validCORSHeaders(this, response, flag, properties, flag.origin)) { return; } - if (urlObj.username || urlObj.password || response.request.uri.href.match(...
11
diff --git a/publish/deployed/mainnet/synths.json b/publish/deployed/mainnet/synths.json "asset": "BTC", "subclass": "PurgeableSynth", "inverted": { - "entryPoint": 27680, - "upperLimit": 41520, - "lowerLimit": 13840 + "entryPoint": 40378, + "upperLimit": 60567, + "lowerLimit": 20189 } }, {
3
diff --git a/meeting/meetingPane.js b/meeting/meetingPane.js @@ -805,6 +805,8 @@ module.exports = { iframe.setAttribute('src', target.uri) // iframe.setAttribute('style', 'height: 350px; border: 0; margin: 0; padding: 0; resize:both; width: 100%;') iframe.setAttribute('style', 'border: none; margin: 0; padding: 0; heig...
11
diff --git a/index.mjs b/index.mjs import http from 'http'; import https from 'https'; import url from 'url'; +import path from 'path'; import fs from 'fs'; import express from 'express'; import vite from 'vite'; @@ -8,6 +9,7 @@ import fetch from 'node-fetch'; import wsrtc from 'wsrtc/wsrtc-server.mjs'; Error.stackTrac...
0
diff --git a/OurUmbraco.Site/Views/Partials/Community/Home.cshtml b/OurUmbraco.Site/Views/Partials/Community/Home.cshtml @@ -139,12 +139,13 @@ else <p> Contributions to Umbraco GitHub repositories <small class="link-list"> + Contributions to default branches for <a href="https://github.com/umbraco/Umbraco-CMS" target="...
3
diff --git a/README.md b/README.md @@ -90,6 +90,7 @@ import 'react-table/react-table.css' ```javascript import ReactTable from 'react-table' +render() { const data = [{ name: 'Tanner Linsley', age: 26, @@ -121,6 +122,7 @@ const columns = [{ data={data} columns={columns} /> +} ``` ## Data
3
diff --git a/package.json b/package.json { "name": "origintrail_node", "version": "6.0.0-beta.2.0", - "description": "OTNode v6 Beta 1", + "description": "OTNode v6 Beta 2", "main": "index.js", "scripts": { "start": "node index.js",
3
diff --git a/assets/js/components/wp-dashboard/WPDashboardIdeaHub.stories.js b/assets/js/components/wp-dashboard/WPDashboardIdeaHub.stories.js @@ -33,7 +33,7 @@ const mockEndpoints = () => { fetchMock.reset(); fetchMock.get( /^\/google-site-kit\/v1\/modules\/idea-hub\/data\/saved-ideas/, - { body: savedIdeas, status: 2...
2
diff --git a/generators/server/templates/src/test/java/package/web/rest/TestUtil.java.ejs b/generators/server/templates/src/test/java/package/web/rest/TestUtil.java.ejs @@ -35,6 +35,7 @@ import org.springframework.security.test.context.TestSecurityContextHolder; import java.io.IOException; import java.time.ZonedDateTim...
1
diff --git a/src/OutputChannel.js b/src/OutputChannel.js @@ -324,9 +324,9 @@ export class OutputChannel extends EventEmitter { * (DOMHighResTimeStamp), the operation will be scheduled for that time. If `time` is omitted, or * in the past, the operation will be carried out as soon as possible. */ - _deselectRegisteredPa...
11
diff --git a/src/lib/coerce.js b/src/lib/coerce.js @@ -361,6 +361,10 @@ exports.valObjectMeta = { * as a convenience, returns the value it finally set */ exports.coerce = function(containerIn, containerOut, attributes, attribute, dflt) { + return _coerce(containerIn, containerOut, attributes, attribute, dflt).value; +}...
0
diff --git a/articles/universal-login/i18n.md b/articles/universal-login/i18n.md @@ -19,7 +19,7 @@ The New <dfn data-key="universal-login">Universal Login</dfn> Experience is curr | en | English | | es | Spanish | | fi | Finnish | -| fr | French | +| fr-FR | French | | fr-CA | French (Canada) | | hi | Hindi | | hu | Hu...
3
diff --git a/packages/stockflux-components/src/index.css b/packages/stockflux-components/src/index.css --color-highlight: #21B1CA; --color-highlight-hover: #2198AE; --color-inactive: #8A96A6; - --color-hover:#1B3B56; + --color-hover:#0D2437; --color-primary:#0D2437; --color-secondary:#091A29; /* Windows*/ --window-back...
3
diff --git a/src/components/general/zone-title-card/zone-title-card.module.css b/src/components/general/zone-title-card/zone-title-card.module.css object-fit: contain; } .zoneTitleCard .leftWing .tailImg { - width: calc(300px); - height: calc(300px * 300px / 512px); - transform: scaleY(0.7) translateY(-250px); - transf...
0
diff --git a/utils/pre-swap-checker/contracts/PreSwapChecker.sol b/utils/pre-swap-checker/contracts/PreSwapChecker.sol @@ -27,7 +27,6 @@ contract PreSwapChecker { IWETH public wethContract; - /** * @notice Contract Constructor * @param preSwapCheckerWethContract address @@ -92,7 +91,6 @@ contract PreSwapChecker { // en...
2
diff --git a/src/plugins/Tus10.js b/src/plugins/Tus10.js @@ -37,7 +37,8 @@ module.exports = class Tus10 extends Plugin { const defaultOptions = { resume: true, allowPause: true, - autoRetry: true + autoRetry: true, + retryDelays: [0, 1000, 3000, 5000] } // merge default options with the ones set by user
0
diff --git a/package.json b/package.json "webpack": "^4.41.2" }, "devEngines": { - "node": "8.x || 9.x || 10.x || 11.x || 12.x || 13.x" + "node": "8.x || 9.x || 10.x || 11.x || 12.x || 13.x || 14.x" }, "jest": { "testRegex": "/scripts/jest/dont-run-jest-directly\\.js$"
11
diff --git a/src/technologies/j.json b/src/technologies/j.json "headers": { "X-Powered-By": "JSF(?:/([\\d.]+))?\\;version:\\1" }, + "html": "<input type=\"hidden\" name=\"javax.faces.ViewState\"", "icon": "JavaServer Faces.png", "implies": "Java", "website": "http://javaserverfaces.java.net"
7
diff --git a/articles/connections/apple-siwa/set-up-apple.md b/articles/connections/apple-siwa/set-up-apple.md @@ -41,7 +41,7 @@ Before you can register your app in the Apple Developer Portal, you must have an 1. On the Apple Developer Portal, go to **Certificates, IDs, & Profiles > Identifiers** and click the **blue p...
3
diff --git a/docs/documentation/Configuration/Server-Options.md b/docs/documentation/Configuration/Server-Options.md @@ -28,7 +28,7 @@ If you're following the [recommended project structure](/getting-started/yo-gene The template engine to use by default. Any engine with express support should work. You will need to ins...
3
diff --git a/packages/openneuro-server/libs/authentication/passport.js b/packages/openneuro-server/libs/authentication/passport.js @@ -29,7 +29,12 @@ export const setupPassportAuth = () => { } export const registerUser = (accessToken, refreshToken, profile, done) => { - User.findOrCreate({ id: profile.id }, function(er...
1
diff --git a/scenes/gunroom.scn b/scenes/gunroom.scn } }, { + "type": "application/text", + "content": { + "text": "S.L.Y", + "font": "./fonts/Bangers-Regular.ttf", + "fontSize": 1, + "anchorX": "left", + "anchorY": "middle", + "color": [255, 255, 255] + }, "position": [ 0, - 0, - 0 - ], - "start_url": "https://webaver...
0
diff --git a/lib/containers/timeline-items/commit-container.js b/lib/containers/timeline-items/commit-container.js @@ -20,7 +20,7 @@ export class Commit extends React.Component { /> <span className="commit-message-headline" - title={commit.messageHeadline} + title={commit.message} dangerouslySetInnerHTML={{__html: comm...
12
diff --git a/js/models/profile/Profile.js b/js/models/profile/Profile.js @@ -119,6 +119,14 @@ export default class extends BaseModel { response.colors = this.standardizeColorFields(response.colors); } + if (response.avatarHashes === null) { + delete response.avatarHashes; + } + + if (response.headerHashes === null) { +...
9
diff --git a/src/client/js/components/PasswordResetRequestForm.jsx b/src/client/js/components/PasswordResetRequestForm.jsx @@ -26,7 +26,7 @@ const PasswordResetRequestForm = (props) => { <input name="reset-password-btn" className="btn btn-lg btn-primary btn-block" value="Reset Password" type="submit" /> </div> <a href=...
7
diff --git a/detox/src/android/expect.js b/detox/src/android/expect.js @@ -303,7 +303,7 @@ class ExpectElement extends Expect { return await new MatcherAssertionInteraction(this._element, new TextMatcher(value)).execute(); } async toHaveLabel(value) { - return await new MatcherAssertionInteraction(this._element, new La...
1
diff --git a/bin/logagent.js b/bin/logagent.js */ process.on('unhandledRejection', (reason, p) => { console.log('Possibly Unhandled Rejection at: Promise ', p, 'reason: ', reason) + console.dir(reason) }) var clone = require('clone') var consoleLogger = require('../lib/util/logger.js') @@ -453,7 +454,7 @@ LaCli.prototy...
7
diff --git a/generators/server/templates/src/main/resources/config/application-tls.yml.ejs b/generators/server/templates/src/main/resources/config/application-tls.yml.ejs @@ -31,7 +31,7 @@ server: key-store-password: password key-store-type: PKCS12 key-alias: selfsigned - ciphers: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA25...
2
diff --git a/server/game/gamesteps/plot/selectplotprompt.js b/server/game/gamesteps/plot/selectplotprompt.js @@ -19,10 +19,18 @@ class SelectPlotPrompt extends AllPlayerPrompt { menuTitle: 'Waiting for opponent to select plot', buttons: [ { arg: 'changeplot', text: 'Change Plot' } - ] }; + ] + }; + } + + onMenuCommand(...
7
diff --git a/token-metadata/0xb6EE9668771a79be7967ee29a63D4184F8097143/metadata.json b/token-metadata/0xb6EE9668771a79be7967ee29a63D4184F8097143/metadata.json "symbol": "CXO", "address": "0xb6EE9668771a79be7967ee29a63D4184F8097143", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/config/vars.yml b/config/vars.yml -lock_url: 'https://cdn.auth0.com/js/lock/11.0.0/lock.min.js' +lock_url: 'https://cdn.auth0.com/js/lock/11.0.1/lock.min.js' lock_urlv10: 'https://cdn.auth0.com/js/lock/10.24.1/lock.min.js' -lock_urlv11: 'https://cdn.auth0.com/js/lock/11.0.0/lock.min.js' +lock_urlv11: 'http...
3
diff --git a/token-metadata/0xd64904232b4674c24fA59170D12fC7df20f5880e/metadata.json b/token-metadata/0xd64904232b4674c24fA59170D12fC7df20f5880e/metadata.json "symbol": "VEDX", "address": "0xd64904232b4674c24fA59170D12fC7df20f5880e", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/panel/poi_bloc/poi_bloc_container.js b/src/panel/poi_bloc/poi_bloc_container.js @@ -14,11 +14,11 @@ PoiBlocContainer.initBlockComponents = function() { builder = require(`./${poiBlock.panelName}_panel`); } catch (err) { const name = poiBlock.panelName.charAt(0).toUpperCase() + poiBlock.panelName.slice(...
7
diff --git a/ModUserQuicklinksEverywhere.user.js b/ModUserQuicklinksEverywhere.user.js // @description Adds quicklinks to user infobox in posts // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 2.3.1 +// @version 2.3.1.1 // // @include https://*stackoverflow.com/* // @include h...
2
diff --git a/apps.json b/apps.json {"name":"*hrm","url":"heartrate-icon.js","evaluate":true} ] }, + { "id": "stetho", + "name": "Stethoscope", + "icon": "stetho.png", + "version":"0.01", + "description": "Hear your heart rate", + "tags": "health", + "storage": [ + {"name":"+stetho","url":"stetho.json"}, + {"name":"-ste...
3
diff --git a/assets/babel-plugin.js b/assets/babel-plugin.js @@ -25,7 +25,7 @@ function rewriteImport(imp, dir, shouldAddMissingExtension) { * partial imports is missing in the browser and being phased out of Node.js, but * this can be a useful option for migrating an old project to Snowpack. */ -module.exports = funct...
0
diff --git a/README.md b/README.md @@ -191,7 +191,6 @@ Additions to this document that are properly formatted will automatically be pus - [DeSmart](https://www.desmart.com) | Gdynia, Poland | Technical interview, take-home project and talk about your experience - [Despark](https://despark.com) | Sofia, Bulgaria & Remot...
10
diff --git a/detox/ios/Detox/Next/Actions/UIView+DetoxActions.m b/detox/ios/Detox/Next/Actions/UIView+DetoxActions.m @@ -480,15 +480,24 @@ static NSDictionary* DTXPointToDictionary(CGPoint point) } }]; - rv[@"frame"] = DTXRectToDictionary(self.frame); - rv[@"bounds"] = DTXRectToDictionary(self.bounds); - rv[@"center"] ...
7
diff --git a/src/content/en/tools/chrome-devtools/console/api.md b/src/content/en/tools/chrome-devtools/console/api.md @@ -78,9 +78,9 @@ Resets a count. ## console.debug(object [, object, ...]) {: #debug } -[Log level][level]: `Info` +[Log level][level]: `Verbose` -Identical to [`console.log(object [, object, ...])`](#...
1
diff --git a/lib/index.js b/lib/index.js @@ -28,6 +28,7 @@ const memoize = require("./util/memoize"); /** @typedef {import("./MultiStats")} MultiStats */ /** @typedef {import("./Parser").ParserState} ParserState */ /** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsCompilation} StatsCompilation */ +/** @typ...
3
diff --git a/samples/WebApp/appsettings.json b/samples/WebApp/appsettings.json "Features": [ { "Name": "MatchScore", - "Enabled": true, + "Enabled": false, "Toggles": [] }, { "Name": "DarkMode", - "Enabled": false, + "Enabled": true, "Toggles": [ { "Type": "Esquio.Toggles.GradualRolloutUserNameToggle", }, { "Name": "Bu...
12
diff --git a/src/components/Table/Table.HeaderCell.jsx b/src/components/Table/Table.HeaderCell.jsx @@ -38,7 +38,7 @@ export default function HeaderCell({ column, isLoading, sortedInfo }) { e.persist() if (!isLoading && column.sorter != null) { - const sorterFn = Array.isArray(column.columnKey) + const sorterFnResult = ...
10
diff --git a/package.json b/package.json "@liquality/bitcoin-swap-provider": "^1.1.6", "@liquality/client": "^1.1.6", "@liquality/crypto": "^1.1.6", - "@liquality/cryptoassets": "^1.1.1", + "@liquality/cryptoassets": "^1.1.2", "@liquality/ethereum-erc20-provider": "^1.1.6", "@liquality/ethereum-erc20-scraper-swap-find-...
3
diff --git a/content/blog/stop-using-isloading-booleans/index.mdx b/content/blog/stop-using-isloading-booleans/index.mdx @@ -29,7 +29,7 @@ bannerCredit: https://egghead.io/lessons/javascript-use-a-status-enum-instead-of-booleans?pl=kent-s-blog-posts-as-screencasts-eefa540c -**[Watch "Handle HTTP Errors with React" on e...
9
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js }; var changed_arguments = null; + + var EventIsSupported = (function() { + try { + new Event('change'); + return true; + } catch (e) { + return false; + } + })(); + $.fn.triggerNative = function (eventName) { var el = this[0], event; if (el.dispatchEvent) { ...
7
diff --git a/doc/admin/adminguide.md b/doc/admin/adminguide.md @@ -56,13 +56,13 @@ PS> docker pull 4minitz/4minitz ``` PS> docker create -v /4minitz_storage --name 4minitz-storage 4minitz/4minitz ``` -4. If you want to edit the configuration, especially after updating your 4minitz images, you should do so in an up-to-d...
14
diff --git a/docs/api.md b/docs/api.md @@ -1147,7 +1147,7 @@ command handler, for example. If the arguments have not been parsed, this property is `false`. If the arguments have been parsed, this contain detailed parsed arguments. See -the documentation in [yargs-parser `.detailed()`][https://github.com/yargs/yargs-par...
1
diff --git a/src/components/zoom/zoom.js b/src/components/zoom/zoom.js @@ -57,7 +57,7 @@ const Zoom = { } if (!gesture.$imageEl || gesture.$imageEl.length === 0) return; if (Support.gestures) { - swiper.zoom.scale = e.scale * zoom.currentScale; + zoom.scale = e.scale * zoom.currentScale; } else { zoom.scale = (gesture....
0
diff --git a/server/preprocessing/other-scripts/test/linkedcat-test.R b/server/preprocessing/other-scripts/test/linkedcat-test.R @@ -7,7 +7,7 @@ options(warn=1) wd <- dirname(rstudioapi::getActiveDocumentContext()$path) setwd(wd) #Don't forget to set your working directory -query <- "Kommissionsbericht" #args[2] +query...
1
diff --git a/_data/conferences.yml b/_data/conferences.yml date: December 6-12, 2020 place: Vancouver Convention Centre, Canada sub: ML - note: '<b>NOTE</b>: Mandatory abstract deadline on May 27, 2020, Paper submission - deadline June 3, 2020' + note: '<b>NOTE</b>: Mandatory abstract deadline on May 27, 2020' - title:...
3
diff --git a/source/app/action/index.mjs b/source/app/action/index.mjs //Token for data gathering info("GitHub token", token, {token:true}) if (!token) - throw new Error('You must provide a valid GitHub personal token to gather your metrics (see "How to setup?" section at https://github.com/lowlighter/metrics#%EF%B8%8F...
7
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.27.1] -- 2017-05-17 + +### Fixed +- Fix text box positioning on scrolled windows (bug introduced in 1.27.0) [#1683, #1690] +- Fix sty...
3